all repos

dotfiles @ 093639a28a808fd789b149bb1a1f8c322e835b17

my dotfiles

config/nvim/README.md (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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
```