kickstart.nvim/lua/plugins/core/git.lua

23 lines
663 B
Lua

-- ========================================================================
-- 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 = '~' },
},
},
},
}