dotfiles/.config/nvim/coc-settings.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2019-01-01 19:48:52 +01:00
{
2019-01-01 20:37:19 +01:00
"coc.preferences.diagnostic.errorSign": "",
"coc.preferences.diagnostic.warningSign": "",
"coc.preferences.noselect": false,
2019-03-09 11:07:45 +01:00
"json.format.enable": true,
"json.schemas": [
{
"fileMatch": [
"/deployment.jsonnet",
"/deployment.json"
],
"url": "https://raw.githubusercontent.com/garethr/kubernetes-json-schema/master/v1.12.2/deployment.json"
}
],
"yaml.schemas": {
"kubernetes": "/*.yaml"
},
2019-01-01 19:48:52 +01:00
"languageserver": {
2019-01-01 20:37:19 +01:00
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
2019-01-03 12:57:39 +01:00
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".vim/", ".git/", ".hg/"],
"initializationOptions": {
"cacheDirectory": "/tmp/ccls"
}
},
2019-01-01 20:37:19 +01:00
"dockerfile": {
"command": "docker-langserver",
"filetypes": ["dockerfile"],
"args": ["--stdio"]
},
2019-01-01 19:48:52 +01:00
"golang": {
"command": "bingo",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
2019-03-09 11:07:45 +01:00
},
"jsonnet": {
"command": "jsonnet-language-server",
"filetypes": ["jsonnet"]
2019-01-01 19:48:52 +01:00
}
}
}