blob: 9b5d9c761d01f0ee1f42aed3da73ec56f3ec6266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
" 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' : 'haskell-language-server-wrapper --lsp'
\ }
autocmd BufNewFile,BufRead *.sc set filetype=scala
|