mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
| .. | ||
| lua | ||
| vimscript | ||
| init.vim | ||
| README.md | ||
NVIM
Install nvim
yay -S neovim-nightly-bin
Install plugin manager(vim-plug)
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
Install LSP servers
# tsserver(JS/TS)
npm i -g typescript typescript-language-server
# Go(gopls)
go get golang.org/x/tools/gopls@latest
# Python(pyls)
pip install python-language-server