This mainly is centered around a pane based workflow.
5P6VVSEVXATMU5OBYS4EZQQIUN5YFPYHHIUFAKS5UMCD4Q5KQKWAC
{ pkgs, config, ... }: {
config = {
programs.tmux = {
enable = true;
disableConfirmationPrompt = true;
terminal = "screen-256color";
shell = "${pkgs.ion}/bin/ion";
keyMode = "vi";
reverseSplit = true;
extraConfig = builtins.readFile (config.dots + "/tmux.conf");
};
};
}
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D