feat: phase 2 migration
This commit is contained in:
parent
fc1fcc0c8c
commit
c0c1148fde
20 changed files with 663 additions and 2645 deletions
22
lua/plugins/core/git.lua
Normal file
22
lua/plugins/core/git.lua
Normal 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 = '~' },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue