Merge pull request #227 from matipan/languageclient-neovim

Add instructions for LanguageClient-neovim
This commit is contained in:
Alexandros Naskos 2021-01-31 11:54:15 +02:00 committed by GitHub
commit 1408aa733b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -177,6 +177,16 @@ set completeopt=menuone,noinsert,noselect
let g:completion_enable_auto_popup = 1
```
#### LanguageClient-neovim
- Install the LanguageClient-neovim from [here](https://github.com/autozimu/LanguageClient-neovim)
- Edit your neovim configuration and add `zls` for zig filetypes:
```vim
let g:LanguageClient_serverCommands = {
\ 'zig': ['~/code/zls/zig-cache/bin/zls'],
\ }
```
### Emacs