Created
March 1, 2012 23:27
-
-
Save zaid/1953994 to your computer and use it in GitHub Desktop.
TMux's config file
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
# change default prefix to be like GNU screen | |
set-option -g prefix C-a | |
# set the statusbar | |
set-option -g status-utf8 on | |
set-option -g status-keys vi | |
# set window notifications | |
set-option -g visual-activity on | |
# set some nice global options | |
set-option -g set-titles on | |
set-option -g mode-mouse on | |
set-option -g mode-keys vi | |
set-option -g default-shell $SHELL | |
set -g default-terminal "screen-256color" | |
# set some keybindings | |
bind-key h split-window -v | |
bind-key v split-window -h | |
bind-key a send-prefix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment