tmuxinator

This commit is contained in:
Joe Frikker
2024-05-23 09:40:21 -04:00
parent f8bc6681de
commit ad5d2466cb
41 changed files with 515 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
pkgs: {
baseIndex = 1;
clock24 = true;
customPaneNavigationAndResize = true;
historyLimit = 50000;
enable = true;
escapeTime = 0;
keyMode = "vi";
mouse = true;
plugins = [
{
plugin = pkgs.tmuxPlugins.catppuccin;
extraConfig = ''set -g @catppuccin_window_tabs_enabled on
set -g @catppuccin_window_default_text "#W"
set -g @catppuccin_window_current_text "#W"'';
}
# {
# plugin = pkgs.tmuxPlugins.tmux-thumbs;
# extraConfig = ''
# set -g @thumbs-unique enabled
# '';
# }
];
shell = pkgs.zsh + "/bin/zsh";
shortcut = "Space";
tmuxinator.enable = true;
terminal = "xterm-256color";
extraConfig = ''
bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel
bind-key -T launcher g popup -h 100% -w 100% -E lazygit
bind-key g switch-client -Tlauncher
'';
}