coc-settings.json 372 B

1234567891011121314151617
  1. {
  2. "languageserver": {
  3. "ccls": {
  4. "command": "ccls",
  5. "filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
  6. "rootPatterns": [".ccls-root", "compile_commands.json"],
  7. "initializationOptions": {
  8. "cache": {
  9. "directory": "/tmp/ccls-cache"
  10. },
  11. "client": {
  12. "snippetSupport": true
  13. }
  14. }
  15. }
  16. }
  17. }