feat: add plugin `gitsigns`

This commit is contained in:
Sven Vogel 2024-11-07 22:50:44 +01:00
parent 60f295c6ca
commit e5223852d6
1 changed files with 21 additions and 0 deletions

21
lua/plugins/gitsigns.lua Normal file
View File

@ -0,0 +1,21 @@
--
-- Super fast git decorations implemented purely in Lua
--
-- Source: Status column with click handlers
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 07.11.2024
-- Edited: 07.11.2024
--
-- ==============================================
return {
{
'lewis6991/gitsigns.nvim',
opts = {
auto_attach = true,
}
}
}