1 " go get golang.org/x/tools/gopls@latest
2 " pip install 'python-language-server[all]'
4 let g:lsc_enable_autocomplete = v:false
5 let g:lsc_server_commands = {
6 \ "c": {"command": "clangd --log=error"},
7 \ "cpp": {"command": "clangd --log=error"},
8 \ "go": {"command": "gopls", "log_level": -1},
11 \ "workspace_config": {"pyls": {
12 \ "configurationSources": ["flake8"],
14 \ "mccabe": {"enabled": v:false},
20 let g:lsc_auto_map = {
21 \ "GoToDefinition": "gd",
22 \ "GoToDefinitionSplit": "<C-W>gd",
23 \ "ShowHover": v:true,
24 \ "Completion": "omnifunc",
27 map <F6> :LSClientAllDiagnostics<CR>