1diff --git a/init.lua b/init.lua
2index 8760687a5ba66f96a314a46980cf4ad2645c35a9..4e78cd4e1921c15bedc103cdef54bfe532ab8855 100644
3--- a/init.lua
4+++ b/init.lua
5@@ -20,29 +20,31 @@ local add = mini_deps.add
6
7 mini_deps.setup({ path = { package = path_package } })
8
9+-- stylua: ignore start
10 local pkgs = {
11- "folke/trouble.nvim", -- diagnostics
12- "mfussenegger/nvim-dap", -- add dap support
13- "nvim-neotest/nvim-nio", -- async support library
14- "nvim-lua/plenary.nvim", -- base lib
15- "nvim-telescope/telescope.nvim", -- telescope
16- "nvim-telescope/telescope-file-browser.nvim", -- telescope file browser
17- "TimUntersberger/neogit", -- magit
18- "f-person/git-blame.nvim", -- more git info
19- "echasnovski/mini.nvim", -- provides many things
20- "mhartington/formatter.nvim", -- provider formatter
21- "mfussenegger/nvim-lint", -- general linter
22- "nvim-treesitter/nvim-treesitter-context", -- show context of where it is at the code
23- "mbbill/undotree", -- keep track of undos
24- "simrat39/symbols-outline.nvim", -- symbols tree (lsp aware)
25- "caenrique/nvim-toggle-terminal", -- help with toggle from and to terminals [DEPRECATED]
26- "RRethy/vim-illuminate", -- hightlight use of the same word (lsp aware)
27- "sainnhe/edge", -- light theme
28- "ellisonleao/gruvbox.nvim", -- light theme
29- "williamboman/mason.nvim", -- manages many things
30- "williamboman/mason-lspconfig.nvim", -- glue mason and lspconfig
31- "neovim/nvim-lspconfig", -- lsp support
32+ "folke/trouble.nvim", -- diagnostics
33+ "mfussenegger/nvim-dap", -- add dap support
34+ "nvim-neotest/nvim-nio", -- async support library
35+ "nvim-lua/plenary.nvim", -- base lib
36+ "nvim-telescope/telescope.nvim", -- telescope
37+ "nvim-telescope/telescope-file-browser.nvim", -- telescope file browser
38+ "TimUntersberger/neogit", -- magit
39+ "f-person/git-blame.nvim", -- more git info
40+ "echasnovski/mini.nvim", -- provides many things
41+ "mhartington/formatter.nvim", -- provider formatter
42+ "mfussenegger/nvim-lint", -- general linter
43+ "nvim-treesitter/nvim-treesitter-context", -- show context of where it is at the code
44+ "mbbill/undotree", -- keep track of undos
45+ "simrat39/symbols-outline.nvim", -- symbols tree (lsp aware)
46+ "caenrique/nvim-toggle-terminal", -- help with toggle from and to terminals [DEPRECATED]
47+ "RRethy/vim-illuminate", -- hightlight use of the same word (lsp aware)
48+ "sainnhe/edge", -- light theme
49+ "ellisonleao/gruvbox.nvim", -- light theme
50+ "williamboman/mason.nvim", -- manages many things
51+ "williamboman/mason-lspconfig.nvim", -- glue mason and lspconfig
52+ "neovim/nvim-lspconfig", -- lsp support
53 }
54+-- stylua: ignore end
55
56 add({
57 source = "nvim-treesitter/nvim-treesitter",