Created
December 19, 2013 08:37
-
-
Save lcaballero/8036204 to your computer and use it in GitHub Desktop.
Tmux conf dot file stuff.
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
# .tmux.conf | |
bind | split-window -h | |
bind - split-window -v | |
bind r source-file ~/.tmux.conf | |
set -g default-terminal "screen-256color" | |
setw -g mode-mouse on | |
set -g mouse-select-pane on | |
set -g mouse-resize-pane on | |
set -g mouse-select-window on | |
# .bashrc stuff for tmux | |
if [[ "$TERM" != "screen-256color" ]] | |
then | |
tmux attach-session -t "$USER" || tmux new-session -s "$USER" | |
exit | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment