My dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
555 B

  1. {
  2. "languageserver": {
  3. "ccls": {
  4. "command": "ccls",
  5. "filetypes": [
  6. "c",
  7. "cpp",
  8. "objc",
  9. "objcpp"
  10. ],
  11. "rootPatterns": [
  12. ".ccls",
  13. "compile_commands.json",
  14. ".vim/",
  15. ".git/",
  16. ".hg/"
  17. ],
  18. "initializationOptions": {
  19. "cache": {
  20. "directory": "/tmp/ccls"
  21. }
  22. }
  23. }
  24. }
  25. }