diff options
Diffstat (limited to '.config/kak-lsp/kak-lsp.toml')
| -rw-r--r-- | .config/kak-lsp/kak-lsp.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/kak-lsp/kak-lsp.toml b/.config/kak-lsp/kak-lsp.toml new file mode 100644 index 0000000..1259a4d --- /dev/null +++ b/.config/kak-lsp/kak-lsp.toml @@ -0,0 +1,10 @@ +[language.latex] +filetypes = ["latex"] +roots = [".git"] +command = "texlab" + +[language.c_cpp] +filetypes = ["c", "cpp", "h", "hpp"] +roots = ["compile_commands.json", ".ccls", ".git"] +command = "ccls" +args = ["--init={\"completion\":{\"detailedLabel\":false}}"] |