chore(nvim): kulala formatter is now installed

This commit is contained in:
Sergio Laín 2025-06-08 21:24:25 +02:00
parent 3fc3c60182
commit 42abe59383
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438

View file

@ -11,13 +11,25 @@ return {
},
lualine = "",
},
ui = {
formatter = true,
},
},
},
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"kulala-fmt",
-- "kulala-ls",
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
kulala_ls = {},
-- kulala_ls = {},
},
},
},
@ -25,7 +37,7 @@ return {
"stevearc/conform.nvim",
opts = function(_, opts)
opts.formatters_by_ft.http = opts.formatters_by_ft.http or {}
table.insert(opts.formatters_by_ft.python, "kulala")
table.insert(opts.formatters_by_ft.http, "kulala")
return opts
end,
},