{ # Empty configuration empty = { plugins.tmux-navigator.enable = true; }; # Activate all settings defaults = { plugins.tmux-navigator = { enable = true; keymaps = [ ]; settings = { save_on_switch = 2; disable_when_zoomed = 1; preserve_zoom = 1; no_wrap = 1; no_mappings = 1; }; }; }; with-keymap = { plugins.tmux-navigator = { enable = true; keymaps = [ { key = "h"; action = "left"; } { key = "j"; action = "down"; } { key = "k"; action = "up"; } { key = "l"; action = "right"; } { key = "\\"; action = "previous"; } ]; settings.no_mappings = 1; }; }; }