Created
November 16, 2015 13:43
-
-
Save AlexeyKhristov/7880351db64add86a48e to your computer and use it in GitHub Desktop.
tmux config (~/.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 status-utf8 on | |
set-option -g utf8 on | |
# http://habrahabr.ru/post/127133/ | |
setw -g xterm-keys on | |
# http://net.tutsplus.com/tutorials/tools-and-tips/intro-to-tmux/?search_index=1 | |
#set -g prefix C-a | |
#unbind C-b | |
#bind C-a send-prefix | |
set -g prefix ` | |
unbind C-b | |
bind ` send-prefix | |
set -g status-bg blue | |
set -g status-fg white | |
#setw -g status-left #H:#S at #W:#T | |
# http://linsovet.org.ua/tmux-zoom-pane & http://xgu.ru/wiki/tmux | |
setw -g mode-mouse on | |
set -g mouse-select-pane on | |
set -g mouse-resize-pane on | |
set -g mouse-select-window on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment