make slimmed down handler user for HandlerOne migration

This commit is contained in:
TheWanderingCrow 2026-01-28 10:31:11 -05:00
parent a43506f960
commit 662abbedb5
6 changed files with 184 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
programs.tmux = {
enable = true;
keyMode = "vi";
extraConfig = ''
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
'';
};
}