Add coc-settings.json file

This commit is contained in:
2021-10-11 19:47:34 +03:00
parent 9c4811cdee
commit 800d31c81b

18
nvim/coc-settings.json Normal file
View File

@@ -0,0 +1,18 @@
{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [".ccls-root", "compile_commands.json"],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
},
"client": {
"snippetSupport": true
}
}
}
}
}