tmux: formatted with alejendra

This commit is contained in:
Fiscal Velvet Poet 2022-07-18 15:34:09 +10:00
parent b4e1aa35ab
commit 43c29f650d
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47

View file

@ -1,11 +1,12 @@
# Common configuration for Tmux users # Common configuration for Tmux users
{ config, pkgs, ... }:
{ {
config,
pkgs,
...
}: {
programs = { programs = {
tmux = { # Terminal multiplexer required by byobu tmux = {
# Terminal multiplexer required by byobu
enable = true; enable = true;
aggressiveResize = true; aggressiveResize = true;
clock24 = true; clock24 = true;
@ -28,10 +29,10 @@
bind-key -n Home send Escape "OH" bind-key -n Home send Escape "OH"
bind-key -n End send Escape "OF" bind-key -n End send Escape "OF"
''; '';
keyMode = "vi"; keyMode = "vi";
newSession = true; newSession = true;
shortcut = "a"; shortcut = "a";
terminal = "screen-256color"; terminal = "screen-256color";
}; };
}; };
@ -43,5 +44,4 @@
tmuxPlugins.tmux-fzf tmuxPlugins.tmux-fzf
tmuxPlugins.yank tmuxPlugins.yank
]; ];
} }