Skip to content

Instantly share code, notes, and snippets.

@glidenote
Created December 14, 2011 21:44
Show Gist options
  • Save glidenote/1478689 to your computer and use it in GitHub Desktop.
Save glidenote/1478689 to your computer and use it in GitHub Desktop.
.tmux.conf
# status
set -g status-fg cyan
set -g status-bg black
set -g status-left-length 30
set -g status-left '#[fg=white,bg=black]#H#[fg=white]:#[fg=white][#S#[fg=white]][#[default]'
set -g status-right '#[fg=black,bg=cyan,bold] [%Y-%m-%d(%a) %H:%M]#[default]'
# window-status-current
setw -g window-status-current-fg black
setw -g window-status-current-bg cyan
setw -g window-status-current-attr bold#,underscore
# pane-active-border
set -g pane-active-border-fg black
set -g pane-active-border-bg cyan
set-option => set
set-window-option => setw
# prefix + r で設定ファイルを再読み込み
unbind r
bind r source-file ~/.tmux.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment