Created
September 2, 2012 17:00
-
-
Save Superbil/3601500 to your computer and use it in GitHub Desktop.
my 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
# We won't worry about sending C-\ to any programs | |
# bind-key C-\ send-prefix | |
# hit C-\ twice to go to last window | |
bind-key C-\ last-window | |
bind-key b set-option status | |
# C-b is not acceptable, due to emacs, bash, and vim | |
unbind-key C-b | |
set -g prefix 'C-\' | |
# split windows like vim | |
# vim's definition of a horizontal/vertical split is reversed from tmux's | |
bind s split-window -v | |
bind v split-window -h | |
set -g default-terminal "screen-256color" # + "tmux -2" => 256 color |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment