2016年9月22日 星期四

[TOOL] tmux Configuration

environment : MacBook Pro @ OS X EL Capitan Version 10.11.6

1. Use homebrew to install tmux
brew install tmux
2. Configure
modify the ~/.tmux.conf
(1) 將控制鍵從 Ctrl+b 改成 Ctrl+f
# Use something easier to type as the prefix
set -g prefix C-f
unbind C-b
bind C-f send-prefix

 (2) 修改 .tmux.conf 後,可以直接生效
# reload config without killing server
bind R source-file ~/.tmux.conf \; display-message "Config reloaded..."

(3) 修改快速鍵 : 設定 Ctrl+f + | 為垂直分割,Ctrl+f + - 為水平分割
# rebind the keys so "|" splits vertically, and "-" splits it horizontally
unbind %
bind | split-window -h
bind - split-window -v

(4) 設定顯示256色
# 256 colors
set -g default-terminal "screen-256color"

(5) 修改 status bar 的顏色
# status bar color
set -g status-bg black
set -g status-fg white

(6) 先用 homebrew 安裝 reattach-to-user-namespace
brew intsll reattach-to-user-namespace
    在 .tmux.conf 啟用
# attach to /bin/bash to use command line natively
set -g default-command "reattach-to-user-namespace /bin/bash"

沒有留言:

張貼留言