Files
dotfiles/.config/nvim/lua/lsp.lua
Kyren223 5f99c45d0c Added kotlin, not great but there seems to be an official LSP from
jetbrains that is in alpha and first commit was like a week ago, so
hopefully it'll be better when I actually need kotlin
2025-05-28 23:14:55 +03:00

39 lines
852 B
Lua

return {
asm_lsp = true,
astro = true,
basedpyright = true, -- python
bashls = true,
clangd = true,
css_variables = true,
cssls = true,
gh_actions_ls = true,
gopls = true,
html = true,
jsonls = true,
kotlin_language_server = true,
kotlin_lsp = false,
lemminx = true, -- xml
lua_ls = true,
markdown_oxide = true,
marksman = false, -- markdown
mdx_analyzer = true,
neocmake = true,
nil_ls = true, -- nix
tailwindcss = true,
taplo = true, -- toml
ts_ls = true, -- typescript and yavashit
yamlls = true,
zls = true, -- zig
global = {
capabilities = {
workspace = {
fileOperations = {
didRename = true,
willRename = true,
},
},
},
},
}