diff options
| author | Gabriel A. Giovanini <g.giovanini@gridx.de> | 2025-10-30 15:30:09 +0100 |
|---|---|---|
| committer | Gabriel A. Giovanini <g.giovanini@gridx.de> | 2025-10-30 15:30:09 +0100 |
| commit | f4168dd73f11a896ed00180fec5b5159a4019ade (patch) | |
| tree | 341e7ca745c19b0e0701d1e60d19725b0eb22df4 /init.lua | |
| parent | aac0e96aee64454f30032ee9ceb39ce0066b566d (diff) | |
| download | gabrielgio.lua-f4168dd73f11a896ed00180fec5b5159a4019ade.tar.gz gabrielgio.lua-f4168dd73f11a896ed00180fec5b5159a4019ade.tar.bz2 gabrielgio.lua-f4168dd73f11a896ed00180fec5b5159a4019ade.zip | |
Update nvim usage along with enable dark theme
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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 |
