diff options
author | binary <me@rgoncalves.se> | 2020-09-27 20:11:30 +0200 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-09-27 20:11:30 +0200 |
commit | 62fcb397432e08e6e934ccea414035de4471b041 (patch) | |
tree | c6704e445e78f5ecdd8ea3f516d9226951d91343 /roles | |
parent | fb0c0b67a71e7b3564daaa30b54ec7aea44398a5 (diff) | |
download | infrastructure-62fcb397432e08e6e934ccea414035de4471b041.tar.gz |
Remove comments
Diffstat (limited to 'roles')
-rw-r--r-- | roles/setup_utils/files/tmux.conf | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/roles/setup_utils/files/tmux.conf b/roles/setup_utils/files/tmux.conf index 961a855..2816065 100644 --- a/roles/setup_utils/files/tmux.conf +++ b/roles/setup_utils/files/tmux.conf @@ -1,7 +1,14 @@ +# /etc/tmux.conf ~~ rgoncalves.se infrastructure + +# keybinds unbind C-b set -g prefix ` +bind-key n last-window +bind-key m send-prefix +bind-key ` last-window +bind-key e send-prefix - +# options set -sg escape-time 0 set -g mouse off set -g default-terminal "screen-256color" @@ -10,17 +17,8 @@ set -g status-left-length 20 set-option -g history-limit 5000 setw -g mode-keys vi - +# statusbar set -g status-position bottom -set -g status-bg colour214 -set -g status-fg colour232 -set -g status-right '#[fg=colour232,bg=colour214,bold] %d/%m #[fg=colour232,bg=colour214,bold] %H:%M:%S ' -setw -g window-status-current-format '#[fg=colour214,bg=colour255]:#I:#W#[fg=colour50]#F ' -setw -g window-status-format ' #I#[fg=colour232]:#[fg=colour255]#W#[fg=colour232]#F ' - - -bind-key n last-window -bind-key m send-prefix -bind-key ` last-window -bind-key e send-prefix +set -g status-bg colour255 +set -g status-fg colour235 |