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.

21 lines
614 B

  1. {
  2. "languageserver": {
  3. "ccls": {
  4. "command": "ccls",
  5. "args": ["--log-file=/tmp/ccls.log", "-v=1"],
  6. "filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
  7. "rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
  8. "initializationOptions": {
  9. "cache": {
  10. "directory": "/tmp/ccls"
  11. },
  12. "index": {
  13. "onChange": true
  14. },
  15. "highlight": {
  16. "lsRanges": true
  17. }
  18. }
  19. }
  20. }
  21. }