Fix neovim home location for windows
parent
5e1d56f113
commit
dcb815e2d8
|
@ -23,7 +23,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
neovim: true
|
neovim: true
|
||||||
- name: Install packer
|
- 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
|
- name: Run neovim checks
|
||||||
run: make check_neovim
|
run: make check_neovim
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue