mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-15 17:18:59 -05:00
make slimmed down handler user for HandlerOne migration
This commit is contained in:
parent
a43506f960
commit
662abbedb5
6 changed files with 184 additions and 0 deletions
17
home/handler/common/core/tmux.nix
Normal file
17
home/handler/common/core/tmux.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue