Created
January 2, 2014 20:40
-
-
Save njpatel/8226404 to your computer and use it in GitHub Desktop.
tmux.conf
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
set-option -g prefix C-a | |
unbind C-b | |
bind-key C-a send-prefix | |
set -g mode-mouse on | |
set -g mouse-select-pane on | |
set -g mouse-resize-pane on | |
set -g mouse-select-window on | |
set-option -g status-utf8 on | |
set -g status-left-length 25 | |
set -g status-left '#[fg=white,bright]njpatel@#H/#S:' | |
set -g status-right '| %y-%m-%d %H:%M ' | |
set -g status-justify left | |
set-option -g set-titles on | |
set-option -g set-titles-string '#H:#S.#I.#P #W #T' | |
set-option -g bell-action any | |
set-option -g visual-bell off | |
set -g base-index 1 | |
set -g history-limit 10000 | |
bind-key | split-window -h | |
bind-key - split-window -v | |
bind-key r source-file ~/.tmux.conf | |
setw -g xterm-keys on | |
set-option -g default-terminal "screen-256color" | |
setw -g mode-keys vi | |
set-option -sg escape-time 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment