diff options
Diffstat (limited to 'roles/common/files/tmux.conf')
-rw-r--r-- | roles/common/files/tmux.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/roles/common/files/tmux.conf b/roles/common/files/tmux.conf new file mode 100644 index 0000000..2816065 --- /dev/null +++ b/roles/common/files/tmux.conf @@ -0,0 +1,24 @@ +# /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" +set -g status-right-length 50 +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 colour255 +set -g status-fg colour235 + |