coc-settings.json 413 B

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