kak-lsp.toml 505 B

12345678910111213141516171819202122232425
  1. verbosity = 2
  2. [server]
  3. timeout = 1800
  4. [language.c_cpp]
  5. extensions = ["c", "h", "cc", "hh", "cpp", "hpp"]
  6. filetypes = ["c", "cpp"]
  7. roots = ["compile_commands.json", ".ccls", "tags"]
  8. command = "ccls"
  9. args = ["--init={\"completion\":{\"detailedLabel\":false}}"]
  10. [language.go]
  11. extensions = ["go"]
  12. filetypes = ["go"]
  13. roots = ["Gopkg.toml", "go.mod", ".git", ".hg"]
  14. command = "gopls"
  15. args = ["serve"]
  16. [language.tex]
  17. extensions = ["tex"]
  18. filetypes = ["latex"]
  19. roots = ["makefile", ".git"]
  20. command = "texlab"