From 3ae435fcd466eaf0ff058ebd5efa75f890a1cdbb Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Sat, 24 Feb 2024 16:45:06 -0500 Subject: [PATCH] neovim - change line number colors --- users/tacocat/neovim/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/users/tacocat/neovim/default.nix b/users/tacocat/neovim/default.nix index ceaf97d..777f947 100644 --- a/users/tacocat/neovim/default.nix +++ b/users/tacocat/neovim/default.nix @@ -6,7 +6,12 @@ enable = true; colorschemes.ayu = { enable = true; - settings.mirage = true; + settings = { + mirage = true; + overrides = { + LineNr = { fg = "#707A8C"; }; + }; + }; }; clipboard = { providers.wl-copy.enable = true;