{ # 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 = true; preserve_zoom = true; no_wrap = true; no_mappings = true; }; }; }; 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 = true; }; }; }