Skip to content

Instantly share code, notes, and snippets.

@neiraza
Created April 11, 2012 10:54
Show Gist options
  • Save neiraza/2358627 to your computer and use it in GitHub Desktop.
Save neiraza/2358627 to your computer and use it in GitHub Desktop.
会社の.tmux.conf
set -g default-shell /bin/zsh
setw -g utf8 on
setw -g mode-keys vi
setw -g automatic-rename off
set -s escape-time 0
setw -g window-status-current-attr underscore
# 256色ターミナル
set -g default-terminal "screen-256color"
# ステータスラインカスタム関連
set -g status-bg black
set -g status-fg white
set -g status-attr dim
# 左部:whoami@hostname
set -g status-left '#[fg=cyan,bold][#20(whoami) No.#I-#P]#[default]'
set -g status-left-length 20
# 右部:[2011/03/06(Sun)20:21]
set -g status-right '#[fg=cyan,bold][%Y/%m/%d(%a)%H:%M]#[default]'
set -g message-attr bold
set -g message-fg white
set -g message-bg red
set -g pane-active-border-fg cyan
set -g pane-active-border-bg cyan
#setw -g mode-bg white
#setw -g mode-fg black
setw -g window-status-bg black
setw -g window-status-fg white
setw -g window-status-current-bg cyan
setw -g window-status-current-fg black
setw -g window-status-current-attr bold
bind-key b split-window 'tmux lsw | canything | cut -d":" -f 1 | xargs tmux select-window -t'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment