From 3c0890e20fcc1973b3ba28261a700117d22db04c Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Mon, 26 May 2025 16:18:43 +0800 Subject: [PATCH] feat(nvf): add cursorline to nvim --- modules/home/cli/editor/nvf/options.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/home/cli/editor/nvf/options.nix b/modules/home/cli/editor/nvf/options.nix index de49804..50d92d3 100644 --- a/modules/home/cli/editor/nvf/options.nix +++ b/modules/home/cli/editor/nvf/options.nix @@ -1,9 +1,10 @@ { autoindent = true; - smartindent = true; - expandtab = true; - tabstop = 2; - shiftwidth = 2; - updatetime = 0; backspace = "indent,eol,start"; + cursorline = true; + expandtab = true; + shiftwidth = 2; + smartindent = true; + tabstop = 2; + updatetime = 0; }