{pkgs, ...}: { programs.nixvim = { keymaps = [ # Keybinds to make split navigation easier. # Use CTRL+ to switch between windows # # See `:help wincmd` for a list of all window commands { 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 lower window"; }; } { mode = "n"; key = ""; action = ""; options = { desc = "Move focus to the upper window"; }; } ]; }; }