dotfiles/vim/coc-settings.json

31 lines
904 B
JSON
Raw Normal View History

2019-11-17 20:12:26 +01:00
{
2022-06-28 02:51:41 +02:00
"languageserver": {
2019-11-17 20:12:26 +01:00
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [".ccls-root", "compile_commands.json"],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
}
}
}
},
2022-06-28 02:51:41 +02:00
"git.addedSign.hlGroup": "GitGutterAdd",
"git.changedSign.hlGroup": "GitGutterChange",
"git.removedSign.hlGroup": "GitGutterDelete",
"git.topRemovedSign.hlGroup": "GitGutterDelete",
"git.changeRemovedSign.hlGroup": "GitGutterChangeDelete",
"git.addGBlameToVirtualText": false,
"gitignore.enable": true,
"diagnostic.errorSign": "✘",
2022-11-02 19:12:37 +01:00
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "ⓘ",
"diagnostic.hintSign": "",
"diagnostic.showUnused": true,
"ltex.languageToolHttpServerUri": "http://localhost:8081/",
"coc.source.vimtex.filetypes": [
"tex"
]
2019-11-17 20:12:26 +01:00
}