feat: phase 2 migration

This commit is contained in:
Anup Sebastian 2025-11-01 01:37:23 -05:00
parent fc1fcc0c8c
commit c0c1148fde
20 changed files with 663 additions and 2645 deletions

22
lua/plugins/core/git.lua Normal file
View file

@ -0,0 +1,22 @@
-- ========================================================================
-- GIT INTEGRATION PLUGINS
-- ========================================================================
-- Git tools for version control
-- - Gitsigns: Git decorations and utilities
-- ========================================================================
return {
-- Git signs in gutter and utilities for managing changes
{
'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
},
}