From e5223852d65a05e90c556d4ce51dda60ec973b5c Mon Sep 17 00:00:00 2001 From: servostar Date: Thu, 7 Nov 2024 22:50:44 +0100 Subject: [PATCH] feat: add plugin `gitsigns` --- lua/plugins/gitsigns.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/plugins/gitsigns.lua diff --git a/lua/plugins/gitsigns.lua b/lua/plugins/gitsigns.lua new file mode 100644 index 0000000..10b8e14 --- /dev/null +++ b/lua/plugins/gitsigns.lua @@ -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, + } + } +}