From c32d42d7ea1a0b98f52f140ff446e84e04ec2d61 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 6 Mar 2026 16:21:31 +0100 Subject: added gitsigns to nvmin config --- modules/home/i3wm/nord-blue/nvim.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'modules/home/i3wm/nord-blue/nvim.nix') diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix index b3bde1b..394da1e 100644 --- a/modules/home/i3wm/nord-blue/nvim.nix +++ b/modules/home/i3wm/nord-blue/nvim.nix @@ -29,6 +29,7 @@ catppuccin-nvim nvim-web-devicons which-key-nvim + gitsigns-nvim # Syntax (IDE-style highlighting) (nvim-treesitter.withPlugins (p: [ @@ -89,6 +90,19 @@ }) vim.cmd.colorscheme("catppuccin") + ------------------------------------------------- + -- GIT SIGNS + ------------------------------------------------- + require("gitsigns").setup{ + signs = { + add = { text = '┃' }, + change = { text = '┃' }, + delete = { text = '_' }, + topdelete = { text = '‾' }, + changedelete = { text = '~' }, + untracked = { text = '┆' }, + }, + } ------------------------------------------------- -- TREESITTER (IDE-style syntax highlighting) ------------------------------------------------- @@ -255,4 +269,4 @@ }) ''; }; -} \ No newline at end of file +} -- cgit v1.2.3