refactor: use lazy's new opts_extend functionality for treesitter and mason

This commit is contained in:
Folke Lemaitre 2024-06-07 09:03:59 +02:00
parent f70d350085
commit ab41ff551b
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
33 changed files with 54 additions and 219 deletions

View file

@ -15,16 +15,12 @@ return {
-- Add packages(linting, debug adapter)
{
"williamboman/mason.nvim",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed or {}, { "ktlint" })
end,
opts = { ensure_installed = { "ktlint" } },
},
-- Add syntax highlighting
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed or {}, { "kotlin" })
end,
opts = { ensure_installed = { "kotlin" } },
},
-- Add language server
{