summaryrefslogtreecommitdiff
path: root/lua/lvim/plugins.lua
diff options
context:
space:
mode:
authoropalmay <[email protected]>2023-02-07 23:28:45 +0200
committeropalmay <[email protected]>2023-02-07 23:31:50 +0200
commita14e9e65bb6c2f8dae86b9150c051c1271458044 (patch)
tree28826a399bb4c38c7cef6d06c69583173dd56913 /lua/lvim/plugins.lua
parent98fb64764fd4bfabc93d5c3b9d1d26d38d8828d6 (diff)
feat: masonn null-ls dapmason-nullls-dap
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r--lua/lvim/plugins.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua
index a1ed58f1..210ed21d 100644
--- a/lua/lvim/plugins.lua
+++ b/lua/lvim/plugins.lua
@@ -17,7 +17,7 @@ local core_plugins = {
settings.current.automatic_installation = false
end,
lazy = true,
- dependencies = "mason.nvim",
+ dependencies = { "mason.nvim", "mason-null-ls.nvim", "mason-nvim-dap.nvim" },
},
{ "tamago324/nlsp-settings.nvim", cmd = "LspSettings", lazy = true },
{ "jose-elias-alvarez/null-ls.nvim", lazy = true },
@@ -29,6 +29,8 @@ local core_plugins = {
cmd = { "Mason", "MasonInstall", "MasonUninstall", "MasonUninstallAll", "MasonLog" },
lazy = true,
},
+ { "jay-babu/mason-null-ls.nvim", lazy = true },
+ { "jay-babu/mason-nvim-dap.nvim", lazy = true, enabled = lvim.builtin.dap.active },
{
"folke/tokyonight.nvim",
lazy = not vim.startswith(lvim.colorscheme, "tokyonight"),