| bind r source-file ~/.tmux.conf | |
| set -g default-shell /bin/zsh | |
| set -g default-terminal "screen-256color" | |
| set-option -g mode-mouse on | |
| set-option -g mouse-resize-pane on | |
| set-option -g mouse-select-pane on | |
| set-option -g mouse-select-window on | |
| # Rename your terminals | |
| set -g set-titles on | |
| set -g set-titles-string '#(whoami)::#h:' | |
| # Status bar customization | |
| set -g status-utf8 on | |
| set -g status-bg black | |
| set -g status-fg white | |
| set -g status-interval 5 | |
| set -g status-left-length 90 | |
| set -g status-right-length 60 | |
| set -g status-left "#[fg=Green]#(whoami)#[fg=white]::#[fg=blue](hostname - s)#[fg=white]:" | |
| set -g status-justify left | |
| set -g status-right '#[fg=Cyan]#S #[fg=white]%a %d %b %R' | |
| # Remap window navigation to vim | |
| unbind-key j | |
| bind-key j select-pane -D | |
| unbind-key k | |
| bind-key k select-pane -U | |
| unbind-key h | |
| bind-key h select-pane -L | |
| unbind-key l | |
| bind-key l select-pane -R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment