본문 바로가기
ETC (IT)

.tmux.conf

by 가우리언 2011. 11. 1.
728x90
반응형
Install Tmux
# apt-get install tmux
Configure Tmux
set-option -g prefix C-a
bind-key C-a last-window
unbind % # Remove default binding since we're replacing
bind | split-window -h
bind - split-window -v
# Set status bar
set -g status-bg black
set -g status-fg white
set -g status-left '#[fg=green]#H'
# Highlight active window
set-window-option -g window-status-current-bg red
set -g status-right '#[fg=yellow]#(uptime | cut -d "," -f 2-)'
# Set window notifications
setw -g monitor-activity on
set -g visual-activity on
# Automatically set window title
setw -g automatic-rename
728x90
반응형