You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ let g:ale_linters = {
76
76
77
77
#### Neovim
78
78
79
-
Install the plugin[autozimu/LanguageClient-neovim][languageclient-neovim] and add the following configuration to
79
+
For NeoVim using[autozimu/LanguageClient-neovim][languageclient-neovim], add the following configuration to
80
80
`init.vim`:
81
81
82
82
```vim
@@ -85,6 +85,20 @@ let g:LanguageClient_serverCommands = {
85
85
\ }
86
86
```
87
87
88
+
For NeoVim v0.5(nightly) using its built-in lsp, install [neovim/nvim-lspconfig](https://github.com/neovim/nvim-lspconfig) and add the following configuration to either your `init.vim` or `init.lua`
89
+
90
+
`init.vim`:
91
+
```vim
92
+
lua require'lspconfig'.bashls.setup{}
93
+
```
94
+
95
+
or
96
+
97
+
`init.lua`:
98
+
```lua
99
+
require'lspconfig'.bashls.setup{}
100
+
```
101
+
88
102
#### Oni
89
103
90
104
On the config file (`File -> Preferences -> Edit Oni config`) add the following configuration:
@@ -118,6 +132,7 @@ Please see [docs/development-guide][dev-guide] for more information.
0 commit comments