dotfiles/vim/coc-settings.json
2020-05-19 13:08:50 -04:00

23 lines
300 B
JSON

{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp"
],
"rootPatterns": [
".ccls",
".git/",
".hg/",
".vim/",
"compile_commands.json"
],
"initializationOptions":{
"cache": {
"directory": "/tmp/ccls"
}
}
}
}
}