feat(extras): added kulala-ls to test config

This commit is contained in:
Alexander Haas 2025-06-26 19:37:04 +02:00 committed by GitHub
parent a6d627dc96
commit dc6b18ece6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,12 +40,14 @@ return {
}, },
}, },
{ {
"williamboman/mason.nvim", "mason-org/mason.nvim",
opts = { opts = function(_, opts)
ensure_installed = { opts.registries = opts.registries or {}
"kulala-fmt", table.insert(opts.registries, "github:mistweaverco/zana-registry")
}, opts.ensure_installed = opts.ensure_installed or {}
}, table.insert(opts.ensure_installed, "kulala-fmt")
table.insert(opts.ensure_installed, "kulala-ls")
end,
}, },
{ {
"stevearc/conform.nvim", "stevearc/conform.nvim",