Last active
April 7, 2024 09:54
-
-
Save Gottfr1ed/05ad44b41da41dd221528f10a08e23fa to your computer and use it in GitHub Desktop.
tmux config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # session settings | |
| set -g default-terminal 'screen-256color' | |
| set -g history-limit 5000 | |
| set -g mouse on | |
| set -g base-index 1 | |
| set -g renumber-windows on | |
| set -g status-keys vi | |
| set -g status-left '' | |
| set -g status-style 'fg=grey,bg=default' | |
| # window settings | |
| set -wg pane-base-index 1 | |
| set -wg mode-keys vi | |
| set -wg window-status-format ' #I:#W#F ' | |
| set -wg window-status-current-format ' #[fg=white]#I:#W#[fg=cyan]#F ' | |
| # server settings | |
| set -sg escape-time 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment