mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
26 lines
362 B
Markdown
26 lines
362 B
Markdown
# NVIM
|
|
|
|
## Install nvim
|
|
```bash
|
|
yay -S neovim-nightly-bin
|
|
```
|
|
|
|
## Install plugin manager(`packer`)
|
|
|
|
## Install LSP servers
|
|
```bash
|
|
# Go(gopls)
|
|
go get golang.org/x/tools/gopls@latest
|
|
|
|
# Efm (linters)
|
|
go get github.com/mattn/efm-langserver
|
|
|
|
# Python(pyls)
|
|
pip install python-language-server
|
|
|
|
# JS/TS
|
|
nvim +"LspInstall typescript"
|
|
|
|
# Lua
|
|
nvim +"LspInstall lua"
|
|
```
|