[tmux] Config
.tmux.conf
基本設定
# vim高速化
set -s escape-time 1
表示
# 256色対応
set -g default-terminal "screen-256color"
# アクティビティなウィンドウをハイライト表示
setw -g monitor-activity on
# ステータスバーをトップに配置する
set-option -g status-position top
# ウィンドウのインデックスを1から始める
set -g base-index 1
# ペインのインデックスを1から始める
setw -g pane-base-index 1
キーバインド
# --------------無効化設定
# デタッチ
unbind-key d
unbind-key y
#------------------------
# コピーモードでvimキーバインドを使う
setw -g mode-keys vi
# コピーモードの開始
bind b copy-mode
# v => 選択モード
bind-key -T copy-mode-vi v send -X begin-selection
# V => 1行選択
bind-key -T copy-mode-vi V send -X select-line
# コピー
# y => クリップボードまでコピー
bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel "xclip -selection clipboard"
# Y => 1行コピー(改行なし)
bind-key -T copy-mode-vi Y run "tmux send-keys V Left y"
# ウィンドウ作成
bind-key -n M-i new-window
# ウィンドウを横に分割
bind-key -r | split-window -h
# ウィンドウを縦に分割
bind-key -r - split-window -v
# 次のwindow
bind-key -n M-l next-window
# 前のwindow
bind-key -n M-h previous-window
# 直前のwindow
bind-key -n M-j last-window
# windowの入れ替え
bind-key -n M-, swap-window -t -1
bind-key -n M-. swap-window -t +1
# ペインの移動
bind-key h select-pane -L
bind-key l select-pane -R
bind-key k select-pane -U
bind-key j select-pane -D
# ペインを移動
bind-key t select-pane -t :.+
# ペインサイズ変更
bind-key -r H resize-pane -L 5
bind-key -r J resize-pane -D 5
bind-key -r K resize-pane -U 5
bind-key -r L resize-pane -R 5
# 設定ファイルをリロード
bind r source-file ~/.tmux.conf \; display "Reloaded!"
テーマ
# Status update interval
set -g status-interval 1
# Basic status bar colors
set -g status-fg colour240
set -g status-bg colour233
# Left side of status bar
set -g status-left-bg colour233
set -g status-left-fg colour243
set -g status-left-length 40
set -g status-left "#[fg=colour233,bg=colour39,bold] #S #[fg=colour39,bg=colour240,nobold]#[fg=colour233,bg=colour240] #(whoami) #[fg=colour240,bg=colour235]#[fg=colour240,bg=colour235] #I:#P #[fg=colour235,bg=colour233,nobold]"
# Right side of status bar
set -g status-right-bg colour233
set -g status-right-fg colour243
set -g status-right-length 150
set -g status-right "#[fg=colour235,bg=colour233]#[fg=colour240,bg=colour235] %H:%M:%S #[fg=colour240,bg=colour235]#[fg=colour233,bg=colour240] %d-%b-%y #[fg=colour39,bg=colour240]#[fg=colour233,bg=colour39,bold] #H "
# Window status
set -g window-status-format " #I:#W#F "
set -g window-status-current-format "#[fg=colour233,bg=black]#[fg=colour81,nobold] #I:#W#F #[fg=colour233,bg=black,nobold]"
# Current window status
set -g window-status-current-bg colour39
set -g window-status-current-fg colour235
# Window with activity status
set -g window-status-activity-bg colour245 # fg and bg are flipped here due to
set -g window-status-activity-fg colour233 # a bug in tmux
# Window separator
set -g window-status-separator ""
# Window status alignment
set -g status-justify centre
# Pane border
set -g pane-border-bg default
set -g pane-border-fg colour238
# Active pane border
set -g pane-active-border-bg default
set -g pane-active-border-fg colour39
# Pane number indicator
set -g display-panes-colour colour233
set -g display-panes-active-colour colour245
# Clock mode
set -g clock-mode-colour colour39
set -g clock-mode-style 24
# Message
set -g message-bg colour39
set -g message-fg black
# Command message
set -g message-command-bg colour233
set -g message-command-fg black
# Mode
set -g mode-bg colour39
set -g mode-fg colour232