My configurations for the software I use
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

This file is no longer used, configuration is done in kakrc

yemou 70441388 bfbeeb01

-40
-40
config/kak-lsp/kak-lsp.toml
··· 1 - snippet_support = true 2 - verbosity = 2 3 - 4 - [server] 5 - timeout = 1800 6 - 7 - [language_server.clangd] 8 - filetypes = ["c", "cpp"] 9 - roots = ["compile_commands.json", ".clangd", ".git", ".hg"] 10 - command = "clangd" 11 - 12 - [language_server.jdtls] 13 - filetypes = ["java"] 14 - roots = ["mvnw", "gradlew", ".git", ".hg"] 15 - command = "jdtls" 16 - [language_server.jdtls.settings] 17 - # See https://github.dev/eclipse/eclipse.jdt.ls 18 - # "java.format.insertSpaces" = true 19 - 20 - [language_server.nil] 21 - filetypes = ["nix"] 22 - roots = ["flake.nix", ".git"] 23 - command = "nil" 24 - 25 - [language_server.ruff] 26 - filetypes = ["python"] 27 - roots = ["requirements.txt", "setup.py", ".git"] 28 - command = "ruff-lsp" 29 - 30 - # Kakoune can't detect typst files right now meaning that there is no highlighting 31 - # I will just continue to use the browser version of typst 32 - # [language_server.typst-lsp] 33 - # filetypes = ["typst"] 34 - # roots = [".git", "main.typ"] 35 - # command = "typst-lsp" 36 - 37 - [language_server.zls] 38 - filetypes = ["zig"] 39 - roots = ["build.zig"] 40 - command = "zls"