Last active
October 22, 2016 22:33
-
-
Save fikriauliya/8b4049f38a79b5d5c8d3712f034c44ab to your computer and use it in GitHub Desktop.
tmux
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
set-option -g prefix C-a | |
setw -g mode-keys vi | |
set -g default-terminal "screen-256color" | |
# status bar config | |
set -g status-left "#h:[#S]" | |
set -g status-left-length 50 | |
set -g status-right-length 50 | |
set -g status-right "%H:%M %d-%h-%Y" | |
setw -g window-status-current-format "|#I:#W|" | |
# listen to alerts from all windows | |
set -g bell-action any | |
set -g default-command "which reattach-to-user-namespace > /dev/null && reattach-to-user-namespace -l $SHELL || $SHELL -l" | |
# TMUX Plugin Manager | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-continuum' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-pain-control' | |
set -g @plugin 'tmux-plugins/tmux-sessionist' | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run '~/.tmux/plugins/tpm/tpm' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment