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

51 lines
1.3 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"
],
2019-07-04 17:15:47 +02:00
"url": "https://raw.githubusercontent.com/garethr/kubernetes-json-schema/master/v1.14.0/deployment.json"
2019-03-09 11:07:45 +01:00
}
],
"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": {
2019-07-04 17:15:47 +02:00
"command": "gopls",
"args": [],
2019-01-01 19:48:52 +01:00
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
2020-03-08 12:54:16 +01:00
},
"terraform": {
"command": "terraform-lsp",
"filetypes": ["terraform"],
"initializationOptions": {}
2019-01-01 19:48:52 +01:00
}
}
}