feat: add fennel-ls

This commit is contained in:
Fey Naomi Schrewe 2025-11-25 09:33:02 +01:00
parent 63f303b63e
commit f95916a1d0

View File

@ -9,6 +9,7 @@ vim.lsp.enable({
"csharp_ls",
"clojure_lsp",
"yamlls",
'fennells'
})
vim.lsp.config("csharp_ls", {
@ -17,6 +18,11 @@ vim.lsp.config("csharp_ls", {
},
})
vim.lsp.config('fennells', {
cmd = { 'fennel-ls' },
filetypes = { 'fennel' }
})
-- Global mappings.
-- See `:help vim.diagnostic.*` for documentation on any of the below functions
vim.keymap.set("n", "<space>e", vim.diagnostic.open_float, {