Fix neovim home location for windows

pull/2/head
Ensar Sarajčić 2022-04-28 17:53:35 +02:00
parent 5e1d56f113
commit dcb815e2d8
1 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,9 @@ jobs:
with:
neovim: true
- name: Install packer
run: git clone https://github.com/wbthomason/packer.nvim $HOME/.local/share/nvim/site/pack/packer/start/packer.nvim
run: |
NVIM_HOME=$(printf "luado return vim.fn.stdpath(\"data\")\n%%print\n" | nvim -es)
git clone https://github.com/wbthomason/packer.nvim $NVIM_HOME/site/pack/packer/start/packer.nvim
- name: Run neovim checks
run: make check_neovim
env: