mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
24 lines
493 B
Markdown
24 lines
493 B
Markdown
# NVIM
|
|
|
|
## Install nvim
|
|
```bash
|
|
yay -S neovim-nightly-bin
|
|
```
|
|
|
|
## Install plugin manager(`vim-plug`)
|
|
```bash
|
|
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
|
|
```bash
|
|
# 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
|
|
```
|