We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27be997 commit 0000336Copy full SHA for 0000336
modules/nvim/lua/minizilla/lsp.lua
@@ -38,7 +38,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
38
}
39
)
40
vim.diagnostic.config {
41
- float = { border = "rounded" },
+ float = { border = 'rounded' },
42
43
end,
44
})
@@ -101,7 +101,7 @@ lspconfig.nixd.setup {
101
settings = {
102
nixd = {
103
formatting = {
104
- command = { "nixfmt" },
+ command = { 'nixfmt' },
105
},
106
107
@@ -150,3 +150,7 @@ lspconfig.gleam.setup {
150
lspconfig.dartls.setup {
151
capabilities = capabilities,
152
153
+
154
+lspconfig.guile_ls.setup {
155
+ capabilities = capabilities,
156
+}
0 commit comments