Last active
December 25, 2015 06:39
-
-
Save hackerain/6933253 to your computer and use it in GitHub Desktop.
my localhost 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 -g prefix C-x | |
#unbind C-b | |
#bind-key C-x send-prefix | |
set-option -g status-keys vi | |
set-window-option -g mode-keys vi | |
setw -g mode-mouse on | |
set -g mouse-resize-pane on | |
set -g mouse-select-pane on | |
set -g mouse-select-window on | |
set -g status-position top | |
set -g status-bg white | |
setw -g window-status-current-attr bright | |
#set -g pane-active-border-fg green | |
#set -g pane-border-fg white | |
bind-key j select-pane -D #below | |
bind-key h select-pane -L #left | |
bind-key l select-pane -R #right | |
bind-key k select-pane -U #above | |
bind-key x kill-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to copy something from tmux to somewhere out of tmux, hold down the shift key!