Explicitly declare plugin dependencies
This commit is contained in:
+15
-4
@@ -110,9 +110,9 @@ local plugins = {
|
|||||||
{
|
{
|
||||||
"rcarriga/nvim-dap-ui",
|
"rcarriga/nvim-dap-ui",
|
||||||
config = function () require("plugins.config.dap_ui") end,
|
config = function () require("plugins.config.dap_ui") end,
|
||||||
|
dependencies = {
|
||||||
|
"mfussenegger/nvim-dap",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"kyazdani42/nvim-web-devicons",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"tpope/vim-fugitive",
|
"tpope/vim-fugitive",
|
||||||
@@ -129,9 +129,9 @@ local plugins = {
|
|||||||
config = function () require("plugins.config.lualine") end,
|
config = function () require("plugins.config.lualine") end,
|
||||||
lazy = true,
|
lazy = true,
|
||||||
event = "VimEnter",
|
event = "VimEnter",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-tree/nvim-web-devicons",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"nvim-lua/plenary.nvim",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"lewis6991/gitsigns.nvim",
|
"lewis6991/gitsigns.nvim",
|
||||||
@@ -144,6 +144,9 @@ local plugins = {
|
|||||||
config = function () require("plugins.config.telescope") end,
|
config = function () require("plugins.config.telescope") end,
|
||||||
lazy = true,
|
lazy = true,
|
||||||
event = "VimEnter",
|
event = "VimEnter",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"numToStr/Comment.nvim",
|
"numToStr/Comment.nvim",
|
||||||
@@ -182,6 +185,10 @@ local plugins = {
|
|||||||
{
|
{
|
||||||
"stevearc/aerial.nvim",
|
"stevearc/aerial.nvim",
|
||||||
config = function () require("plugins.config.aerial") end,
|
config = function () require("plugins.config.aerial") end,
|
||||||
|
dependencies = {
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"RubixDev/mason-update-all",
|
"RubixDev/mason-update-all",
|
||||||
@@ -205,12 +212,16 @@ local plugins = {
|
|||||||
-- event = "VeryLazy",
|
-- event = "VeryLazy",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"MunifTanjim/nui.nvim",
|
"MunifTanjim/nui.nvim",
|
||||||
|
"rcarriga/nvim-notify",
|
||||||
},
|
},
|
||||||
config = function () require("plugins.config.noice") end,
|
config = function () require("plugins.config.noice") end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-orgmode/orgmode",
|
"nvim-orgmode/orgmode",
|
||||||
config = function () require("plugins.config.orgmode") end,
|
config = function () require("plugins.config.orgmode") end,
|
||||||
|
dependencies = {
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"farmergreg/vim-lastplace",
|
"farmergreg/vim-lastplace",
|
||||||
|
|||||||
Reference in New Issue
Block a user