aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel A. Giovanini <g.giovanini@gridx.de>2024-09-02 16:29:28 +0200
committerGabriel A. Giovanini <g.giovanini@gridx.de>2024-09-02 16:29:28 +0200
commit3f63c9f73199c0aaba8dd209db66956631cf1b02 (patch)
treea92ec9e2c61daa0e37224b04e98ecc94ef6f777b
parentb97b79961c62f78168d531212e1a58155cd290ea (diff)
downloadgabrielgio.lua-3f63c9f73199c0aaba8dd209db66956631cf1b02.tar.gz
gabrielgio.lua-3f63c9f73199c0aaba8dd209db66956631cf1b02.tar.bz2
gabrielgio.lua-3f63c9f73199c0aaba8dd209db66956631cf1b02.zip
feat: Sync
-rw-r--r--init.lua44
1 files changed, 23 insertions, 21 deletions
diff --git a/init.lua b/init.lua
index 8760687..4e78cd4 100644
--- a/init.lua
+++ b/init.lua
@@ -20,29 +20,31 @@ local add = mini_deps.add
mini_deps.setup({ path = { package = path_package } })
+-- stylua: ignore start
local pkgs = {
- "folke/trouble.nvim", -- diagnostics
- "mfussenegger/nvim-dap", -- add dap support
- "nvim-neotest/nvim-nio", -- async support library
- "nvim-lua/plenary.nvim", -- base lib
- "nvim-telescope/telescope.nvim", -- telescope
- "nvim-telescope/telescope-file-browser.nvim", -- telescope file browser
- "TimUntersberger/neogit", -- magit
- "f-person/git-blame.nvim", -- more git info
- "echasnovski/mini.nvim", -- provides many things
- "mhartington/formatter.nvim", -- provider formatter
- "mfussenegger/nvim-lint", -- general linter
- "nvim-treesitter/nvim-treesitter-context", -- show context of where it is at the code
- "mbbill/undotree", -- keep track of undos
- "simrat39/symbols-outline.nvim", -- symbols tree (lsp aware)
- "caenrique/nvim-toggle-terminal", -- help with toggle from and to terminals [DEPRECATED]
- "RRethy/vim-illuminate", -- hightlight use of the same word (lsp aware)
- "sainnhe/edge", -- light theme
- "ellisonleao/gruvbox.nvim", -- light theme
- "williamboman/mason.nvim", -- manages many things
- "williamboman/mason-lspconfig.nvim", -- glue mason and lspconfig
- "neovim/nvim-lspconfig", -- lsp support
+ "folke/trouble.nvim", -- diagnostics
+ "mfussenegger/nvim-dap", -- add dap support
+ "nvim-neotest/nvim-nio", -- async support library
+ "nvim-lua/plenary.nvim", -- base lib
+ "nvim-telescope/telescope.nvim", -- telescope
+ "nvim-telescope/telescope-file-browser.nvim", -- telescope file browser
+ "TimUntersberger/neogit", -- magit
+ "f-person/git-blame.nvim", -- more git info
+ "echasnovski/mini.nvim", -- provides many things
+ "mhartington/formatter.nvim", -- provider formatter
+ "mfussenegger/nvim-lint", -- general linter
+ "nvim-treesitter/nvim-treesitter-context", -- show context of where it is at the code
+ "mbbill/undotree", -- keep track of undos
+ "simrat39/symbols-outline.nvim", -- symbols tree (lsp aware)
+ "caenrique/nvim-toggle-terminal", -- help with toggle from and to terminals [DEPRECATED]
+ "RRethy/vim-illuminate", -- hightlight use of the same word (lsp aware)
+ "sainnhe/edge", -- light theme
+ "ellisonleao/gruvbox.nvim", -- light theme
+ "williamboman/mason.nvim", -- manages many things
+ "williamboman/mason-lspconfig.nvim", -- glue mason and lspconfig
+ "neovim/nvim-lspconfig", -- lsp support
}
+-- stylua: ignore end
add({
source = "nvim-treesitter/nvim-treesitter",