diff options
| author | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2025-10-21 20:26:16 +0200 |
|---|---|---|
| committer | Crony Akatsuki <crony@cronyakatsuki.xyz> | 2025-10-21 20:26:16 +0200 |
| commit | d0738bbf71b41b9394846cf9de96bbceeda7eebd (patch) | |
| tree | 18ed3ee572f8894ec352e0497a2782f5f911ce67 /lua/config/pack.lua | |
| parent | 91660e8890ec0e361be36f30cd11c85305bbd703 (diff) | |
| download | nvim-d0738bbf71b41b9394846cf9de96bbceeda7eebd.zip nvim-d0738bbf71b41b9394846cf9de96bbceeda7eebd.tar.gz | |
feat: big refactor.
Diffstat (limited to 'lua/config/pack.lua')
| -rw-r--r-- | lua/config/pack.lua | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lua/config/pack.lua b/lua/config/pack.lua index e4e5443..7480a0c 100644 --- a/lua/config/pack.lua +++ b/lua/config/pack.lua @@ -1,14 +1,12 @@ vim.pack.add({ -- Colorscheme - {src = "https://github.com/ellisonleao/gruvbox.nvim"}, + { src = "https://github.com/ellisonleao/gruvbox.nvim" }, -- Treesitter parsers - {src = "https://github.com/nvim-treesitter/nvim-treesitter"}, + { src = "https://github.com/nvim-treesitter/nvim-treesitter" }, -- Preconfigured lsp's - {src = "https://github.com/neovim/nvim-lspconfig"}, - -- Nice file manager - {src = "https://github.com/stevearc/oil.nvim"}, + { src = "https://github.com/neovim/nvim-lspconfig" }, -- Amazing neovim bundle of plugins that are super nice - {src = "https://github.com/nvim-mini/mini.nvim"}, + { src = "https://github.com/nvim-mini/mini.nvim" }, -- Fix the annoying neovim+lua errors - {src = "https://github.com/folke/lazydev.nvim"}, + { src = "https://github.com/folke/lazydev.nvim" }, }) |
