Skip to content

Commit

Permalink
fix neovim install
Browse files Browse the repository at this point in the history
  • Loading branch information
dhvcc committed Jul 2, 2024
1 parent dbc71eb commit b02d24f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .cfg/scripts/install-neovim.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env zsh

. ~/.zshrc
export PATH="/home/linuxbrew/.linuxbrew/bin:/opt/homebrew/bin:$PATH"

curl -fLo '~/.vim/autoload/plug.vim' --create-dirs \
'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'

python -m venv ~/.vim/.venv
~/.vim/.venv/bin/pip install pynvim pyright
npm i -g neovim
#python -m venv ~/.vim/.venv
#~/.vim/.venv/bin/pip install pynvim pyright
#npm i -g neovim
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
nvim --headless +'PlugInstall' +qall
nvim --headless +'CocInstall' +qall # FIXME
#nvim --headless +'CocInstall' +qall # FIXME

0 comments on commit b02d24f

Please sign in to comment.