{ ... }: { programs.nixvim = { enable = true; viAlias = true; vimAlias = true; vimdiffAlias = true; defaultEditor = true; colorscheme = "tokyonight"; colorschemes.tokyonight.enable = true; opts = { number = true; relativenumber = true; showmode = false; breakindent = true; undofile = true; ignorecase = true; smartcase = true; signcolumn = "yes"; updatetime = 250; timeoutlen = 300; splitright = true; splitbelow = true; list = true; listchars = { tab = "» "; trail = "·"; nbsp = "␣"; }; inccommand = "split"; cursorline = true; scrolloff = 10; confirm = true; }; keymaps = [ { mode = "n"; key = ""; action = "nohlsearch"; options.silent = true; } { mode = "n"; key = ""; action = ""; options.desc = "Move focus to the left window"; } { mode = "n"; key = ""; action = ""; options.desc = "Move focus to the right window"; } { mode = "n"; key = ""; action = ""; options.desc = "Move focus to the upper window"; } { mode = "n"; key = ""; action = ""; options.desc = "Move focus to the lower window"; } ]; }; }