Last active
July 21, 2020 16:31
-
-
Save tlhakhan/c689174643c655de1f2cef817fff6bfa to your computer and use it in GitHub Desktop.
This file contains 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
# Reload the file with Prefix r. | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
set -g mouse off | |
set -g default-terminal "screen-256color" | |
# bar style | |
set -g status-style fg=white,bold,bg=black | |
setw -g window-status-style fg=cyan,bg=black | |
setw -g window-status-current-style fg=white,bold,bg=red | |
# clock-style | |
set -g status-right "#[fg=cyan]%A, %d %b %Y %I:%M %p" | |
# for pane | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
bind -r H resize-pane -L 5 | |
bind -r J resize-pane -D 5 | |
bind -r K resize-pane -U 5 | |
bind -r L resize-pane -R 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment