blob: 11eee9286a0b983cf02cf42effa79d29033d3208 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
" vim-lsc configuation
"
let g:lsc_server_commands = {
\ 'python': {
\ 'command': 'pyls',
\ 'message_hooks': {
\ 'initialize': {
\ 'initializationOptions': {
\ "pyls.plugins.pydocstyle.enabled": 1,
\ "pyls.plugins.epyls_mypy.enabled": 1,
\ "pyls.plugins.epyls_mypy.live_mode": 0
\ }
\ }
\ }
\ },
\ 'haskell' : {
\ 'command': 'haskell-language-server-wrapper --lsp',
\ 'suppress_stderr': 1
\ }
\ }
autocmd BufNewFile,BufRead *.sc set filetype=scala
|