Add elm language server.

This commit is contained in:
Danila Fedorin 2019-06-20 20:14:20 -07:00
parent 223a68e639
commit 3727a28e26
1 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,8 @@ let g:LanguageClient_serverCommands = {
\ 'c': ['clangd'], \ 'c': ['clangd'],
\ 'crystal': ['scry'], \ 'crystal': ['scry'],
\ 'cpp': ['clangd'], \ 'cpp': ['clangd'],
\ 'javascript': ['javascript-typescript-stdio'] \ 'javascript': ['javascript-typescript-stdio'],
\ 'elm': ['elm-language-server', '--stdio']
\ } \ }
let g:deoplete#enable_at_startup = 1 let g:deoplete#enable_at_startup = 1
let g:LanguageClient_diagnosticsDisplay = { let g:LanguageClient_diagnosticsDisplay = {
@ -45,5 +46,6 @@ let g:LanguageClient_diagnosticsDisplay = {
\ 4: {"name": "Hint","texthl": "ALEInfo","signText": ">>","signTexthl": "ALEInfoSign",},} \ 4: {"name": "Hint","texthl": "ALEInfo","signText": ">>","signTexthl": "ALEInfoSign",},}
let g:LanguageClient_rootMarkers = { let g:LanguageClient_rootMarkers = {
\ 'haskell': ['.git'], \ 'haskell': ['.git'],
\ 'elm': ['elm.json'],
\ } \ }
colorscheme nord colorscheme nord