Skip to content

Commit 0000336

Browse files
nvim: add guile_ls
1 parent 27be997 commit 0000336

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

modules/nvim/lua/minizilla/lsp.lua

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
3838
}
3939
)
4040
vim.diagnostic.config {
41-
float = { border = "rounded" },
41+
float = { border = 'rounded' },
4242
}
4343
end,
4444
})
@@ -101,7 +101,7 @@ lspconfig.nixd.setup {
101101
settings = {
102102
nixd = {
103103
formatting = {
104-
command = { "nixfmt" },
104+
command = { 'nixfmt' },
105105
},
106106
},
107107
},
@@ -150,3 +150,7 @@ lspconfig.gleam.setup {
150150
lspconfig.dartls.setup {
151151
capabilities = capabilities,
152152
}
153+
154+
lspconfig.guile_ls.setup {
155+
capabilities = capabilities,
156+
}

0 commit comments

Comments
 (0)