12345678910111213141516171819202122232425 |
- verbosity = 2
- [server]
- timeout = 1800
- [language.c_cpp]
- extensions = ["c", "h", "cc", "hh", "cpp", "hpp"]
- filetypes = ["c", "cpp"]
- roots = ["compile_commands.json", ".ccls", "tags"]
- command = "ccls"
- args = ["--init={\"completion\":{\"detailedLabel\":false}}"]
- [language.go]
- extensions = ["go"]
- filetypes = ["go"]
- roots = ["Gopkg.toml", "go.mod", ".git", ".hg"]
- command = "gopls"
- args = ["serve"]
- [language.tex]
- extensions = ["tex"]
- filetypes = ["latex"]
- roots = ["makefile", ".git"]
- command = "texlab"
|