This commit is contained in:
Folke Lemaitre 2023-07-22 09:26:49 +02:00
parent 87a9462dee
commit e57ecee1b8
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -16,14 +16,14 @@ return {
nls.builtins.diagnostics.cmake_lint, nls.builtins.diagnostics.cmake_lint,
}) })
end, end,
dependencies = { },
{
"mason.nvim", "mason.nvim",
opts = function(_, opts) opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {} opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "cmakelint" }) vim.list_extend(opts.ensure_installed, { "cmakelint" })
end, end,
}, },
},
{ {
"neovim/nvim-lspconfig", "neovim/nvim-lspconfig",
opts = { opts = {
@ -34,7 +34,7 @@ return {
}, },
{ {
"Civitasv/cmake-tools.nvim", "Civitasv/cmake-tools.nvim",
dependencies = { "nvim-lua/plenary.nvim" }, opts = {},
event = "BufRead", event = "BufRead",
}, },
} }