From 16e7916672a189ee168bcebf878b8e1c0ec64956 Mon Sep 17 00:00:00 2001 From: venus Date: Tue, 2 Jun 2026 01:37:32 -0500 Subject: [PATCH] moved gitsigns out of lsp config --- lua/plugins/gitsigns.lua | 12 ++++++++++++ 1 file changed, 12 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..2d1f561 --- /dev/null +++ b/lua/plugins/gitsigns.lua @@ -0,0 +1,12 @@ +return { -- Adds git related signs to the gutter, as well as utilities for managing changes + 'lewis6991/gitsigns.nvim', + opts = { + signs = { + add = { text = '+' }, + change = { text = '~' }, + delete = { text = '_' }, + topdelete = { text = '‾' }, + changedelete = { text = '~' }, + }, + }, + }