Skip to content

Commit

Permalink
chore: sort dependencies before event keys in plugin list
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Sep 30, 2024
1 parent debd875 commit 1260fe9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/nxvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,22 +81,22 @@ local modules = {
{ "windwp/nvim-ts-autotag", dependencies = "nvim-treesitter/nvim-treesitter" },
{
"JoosepAlviste/nvim-ts-context-commentstring",
event = "VeryLazy",
dependencies = "nvim-treesitter/nvim-treesitter",
event = "VeryLazy",
config = true,
},
{ "nvim-treesitter/playground", dependencies = "nvim-treesitter/nvim-treesitter" },
{
"mizlan/iswap.nvim",
event = "VeryLazy",
dependencies = "nvim-treesitter/nvim-treesitter",
event = "VeryLazy",
config = "plugins.iswap",
},
{ "HiPhish/rainbow-delimiters.nvim", config = "plugins.rainbow-delimiters" },
{
"aarondiel/spread.nvim",
event = "VeryLazy",
dependencies = "nvim-treesitter/nvim-treesitter",
event = "VeryLazy",
config = "plugins.spread",
},
{ "RRethy/vim-illuminate", dependencies = "nvim-treesitter/nvim-treesitter" },
Expand Down Expand Up @@ -212,7 +212,7 @@ local modules = {
{ "NvChad/nvim-colorizer.lua", event = "VeryLazy", config = "plugins.colorizer" },
{ "windwp/nvim-spectre", event = "VeryLazy", config = "plugins.spectre" },
-- stylua: ignore
{ "kevinhwang91/nvim-ufo", event = "VeryLazy", dependencies = "kevinhwang91/promise-async", config = "plugins.ufo" },
{ "kevinhwang91/nvim-ufo", dependencies = "kevinhwang91/promise-async", event = "VeryLazy", config = "plugins.ufo" },
{ "nvim-tree/nvim-web-devicons", config = "plugins.devicons", eager = true },
"nvim-lua/plenary.nvim",
{ "tenxsoydev/size-matters.nvim", lazy = true },
Expand Down

0 comments on commit 1260fe9

Please sign in to comment.