Skip to content

Commit 9ce4e69

Browse files
committed
Add reason and language server
1 parent 14cf25d commit 9ce4e69

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

nvim/.config/nvim/init.vim

+9
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ Plug 'ntpeters/vim-better-whitespace'
3131
" Languages
3232
Plug 'sheerun/vim-polyglot'
3333
Plug 'nsf/gocode'
34+
Plug 'autozimu/LanguageClient-neovim', {
35+
\ 'branch': 'next',
36+
\ 'do': './install.sh'
37+
\ }
38+
Plug 'reasonml-editor/vim-reason-plus'
3439

3540
call plug#end()
3641

@@ -80,3 +85,7 @@ let g:gitgutter_enabled = 1
8085
" javascript
8186
let g:javascript_plugin_flow = 1
8287

88+
let g:LanguageClient_serverCommands = {
89+
\ 'reason': ['ocaml-language-server', '--stdio'],
90+
\ 'ocaml': ['ocaml-language-server', '--stdio'],
91+
\ }

0 commit comments

Comments
 (0)