|
Tmux is an excellent terminal reusable software, similar to GNU Screen, but two software evaluation has been one-sided, and most people think tmux more powerful, easier to use.
Tmux can not only improve the efficiency of the terminal, is an indispensable tool for server management, more pull the wind can be done remotely Pair Programming.
Here are some of my settings .tmux.conf
unbind C-b
set -g prefix C-a
setw -g mode-keys vi
# Split window like vim
# Vim's defination of a horizontal / vertical split is revised from tumx's
bind s split-window -h
bind v split-window -v
# Move arount panes wiht hjkl, as one would in vim after C-w
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Resize panes like vim
# Feel free to change the "1" to however many lines you want to resize by,
# Only one at a time can be slow
bind
bind> resize-pane -R 10
bind - resize-pane -D 10
bind + resize-pane -U 10
# Bind: to command-prompt like vim
# This is the default in tmux already
bind: command-prompt |
|
|
|