Created
October 11, 2024 12:07
-
-
Save Sama-004/78aea52f1e00623054c30e08511d97a2 to your computer and use it in GitHub Desktop.
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
set -g default-terminal "screen-256color" | |
set -ga terminal-overrides ',*256color*:smcup@:rmcup@' | |
set -g mouse on | |
set-option -ga terminal-overrides "xterm-256color:Tc" | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
unbind C-b | |
set -g prefix C-a | |
unbind-key l | |
bind h select-pane -L | |
bind l select-pane -R | |
bind k select-pane -U | |
bind j select-pane -D | |
set -g status-left '[#S]' | |
set -g status-left-length 100 | |
set -g status-right '%H:%M %d-%b-%Y' | |
set -g status-bg color232 | |
set -g status-fg "white" | |
set -g status-position bottom | |
#set -g status-bg colour236 | |
#set -g status-fg colour255 # Foreground color | |
set -sg escape-time 0 | |
run '~/.tmux/plugins/tpm/tpm' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment