summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-06 16:21:31 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-06 16:21:31 +0100
commitc32d42d7ea1a0b98f52f140ff446e84e04ec2d61 (patch)
tree072e47ceb0cda18d76150c17fc91b864150cf302
parent88d5156546d33f278ab654c1241ab3b882f00237 (diff)
added gitsigns to nvmin config
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix16
1 files changed, 15 insertions, 1 deletions
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: [
@@ -90,6 +91,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)
-------------------------------------------------
require("nvim-treesitter.configs").setup({
@@ -255,4 +269,4 @@
})
'';
};
-} \ No newline at end of file
+}