We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14cf25d commit 9ce4e69Copy full SHA for 9ce4e69
nvim/.config/nvim/init.vim
@@ -31,6 +31,11 @@ Plug 'ntpeters/vim-better-whitespace'
31
" Languages
32
Plug 'sheerun/vim-polyglot'
33
Plug 'nsf/gocode'
34
+Plug 'autozimu/LanguageClient-neovim', {
35
+ \ 'branch': 'next',
36
+ \ 'do': './install.sh'
37
+ \ }
38
+Plug 'reasonml-editor/vim-reason-plus'
39
40
call plug#end()
41
@@ -80,3 +85,7 @@ let g:gitgutter_enabled = 1
80
85
" javascript
81
86
let g:javascript_plugin_flow = 1
82
87
88
+let g:LanguageClient_serverCommands = {
89
+ \ 'reason': ['ocaml-language-server', '--stdio'],
90
+ \ 'ocaml': ['ocaml-language-server', '--stdio'],
91
0 commit comments