Created
July 31, 2021 01:38
-
-
Save HerrCraziDev/2e8e35527e6f660d442bbbe41fc78893 to your computer and use it in GitHub Desktop.
bare 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
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix | |
# More friendly split pane | |
bind-key h split-window -h | |
bind-key v split-window -v | |
bind - split-window -h | |
bind _ split-window -v | |
bind Enter copy-mode | |
bind Escape copy-mode | |
bind r source-file ~/.tmux.conf | |
set -g utf8 on | |
set-option -g status-utf8 on | |
set -g status-bg colour240 | |
set -g status-fg white | |
set -g status-left '#[bg=colour31,fg=white] #(echo -e "\\u25c9") #{session_windows} #[bg=red]' | |
set -g status-left-length 80 | |
set -g status-justify centre | |
set -g pane-active-border-fg colour208 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment