From 03847beac3ea711d0003f566ebb0a3ff6d4506dc Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Mon, 12 Feb 2024 15:48:47 -0500 Subject: [PATCH] neovim - gitsigns and cursorline --- users/tacocat/neovim/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/users/tacocat/neovim/default.nix b/users/tacocat/neovim/default.nix index 4c0b1b2..ff80c80 100644 --- a/users/tacocat/neovim/default.nix +++ b/users/tacocat/neovim/default.nix @@ -20,12 +20,13 @@ autoindent = true; copyindent = true; signcolumn = "yes"; + cursorline = true; }; plugins = { lightline = { enable = true; }; - gitgutter = { + gitsigns = { enable = true; }; };