coc-settings.json 544 B

123456789101112131415161718192021222324
  1. {
  2. "diagnostic-languageserver.filetypes": {
  3. "sh": "shellcheck"
  4. },
  5. "diagnostic-languageserver.formatFiletypes": {
  6. "sh": "shfmt"
  7. },
  8. "python.linting.pylintEnabled" : true,
  9. "languageserver": {
  10. "ccls": {
  11. "command": "ccls",
  12. "filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
  13. "rootPatterns": [".ccls-root", "compile_commands.json"],
  14. "initializationOptions": {
  15. "cache": {
  16. "directory": "/tmp/ccls-cache"
  17. },
  18. "client": {
  19. "snippetSupport": true
  20. }
  21. }
  22. }
  23. }
  24. }