diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-11-17 08:26:23 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-11-17 08:26:23 -0800 |
commit | d7d3823ba74b5abfe24eff03577f1e186ae5fdd3 (patch) | |
tree | 4f4cc9ca0ae1ae0b35c24daef9bc24a641bfbab5 /configs | |
parent | [emacs] Some update for flycheck and go. (diff) | |
download | emacs.d-d7d3823ba74b5abfe24eff03577f1e186ae5fdd3.tar.gz |
[tmux] Add comments and don't display status.
Diffstat (limited to '')
-rw-r--r-- | configs/rcs/tmux.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configs/rcs/tmux.conf b/configs/rcs/tmux.conf index a144dbf..453cfaf 100644 --- a/configs/rcs/tmux.conf +++ b/configs/rcs/tmux.conf @@ -4,11 +4,21 @@ set-option -g default-terminal "screen-256color" # Add truecolor support (tmux info | grep Tc) set-option -ga terminal-overrides ",xterm-256color:Tc" +# Disable the status bar +set -g status off + +# Let's use the mouse set -g mouse on + +# Avoid conflicting with emacs key bindings in the shell set -g prefix C-z +# Do not rename the windows for me set -g allow-rename off + +# But renumber them as we delete set -g renumber-windows on +# And starts indexing at 1, not 0 set -g base-index 1 setw -g pane-base-index 1 |