aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/init.lua b/init.lua
index cb0e376..c7f1455 100644
--- a/init.lua
+++ b/init.lua
@@ -31,11 +31,10 @@ local pkgs = {
"TimUntersberger/neogit", -- magit
"vimwiki/vimwiki", -- wiki
"f-person/git-blame.nvim", -- more git info
- "echasnovski/mini.nvim", -- provides many things
+ "nvim-mini/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
- "theHamsta/nvim-dap-virtual-text", -- support lib from tree sitter
"mbbill/undotree", -- keep track of undos
"hedyhli/outline.nvim", -- symbols tree (lsp aware)
"akinsho/toggleterm.nvim", -- terminal
@@ -61,11 +60,11 @@ add({
-- work related ai plugins
if vim.fn.executable("copilot") == 1 then
- table.insert(pkgs, "github/copilot.vim") -- copilot
+ table.insert(pkgs, "github/copilot.vim")
end
if vim.fn.executable("claude") == 1 then
- table.insert(pkgs, "coder/claudecode.nvim") -- claude
+ table.insert(pkgs, "coder/claudecode.nvim")
end
for _, value in ipairs(pkgs) do