all repos

dotfiles @ fef35c3ef0848715da74780cf5c6629284b059f1

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(`packer`)
```bash
git clone https://github.com/wbthomason/packer.nvim\
 ~/.local/share/nvim/site/pack/packer/start/packer.nvim
```

## Install LSP servers
```bash
# Go(gopls)
go get golang.org/x/tools/gopls@latest

# Python(pyls)
pip install python-language-server

# JS/TS
nvim +"LspInstall typescript"
```