Created
May 22, 2013 16:53
-
-
Save t-kashima/5629111 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option default-shell /bin/zsh | |
set-option -g prefix C-t | |
unbind-key C-b | |
bind-key C-t send-prefix | |
# ウィンドウ・ペインの最初の番号を指定を1に。デフォルトだと0から | |
set -g base-index 1 | |
set -g pane-base-index 1 | |
set -g mouse-select-pane on | |
# 256色表示 | |
set -g default-terminal screen-256color | |
setw -g utf8 on | |
set -g status-utf8 on | |
set -g status-interval 10 | |
# set -g status-bg colour100 | |
set-option -g status-bg black | |
set-option -g status-fg blue | |
set-option -g status-left-bg black | |
set-option -g status-right-bg black | |
set-option -g status-left-fg white | |
set-window-option -g window-status-bg black | |
set-window-option -g window-status-current-bg black | |
set-window-option -g window-status-current-fg red | |
set-window-option -g window-status-current-attr bold,underscore | |
set-option -g status-left '' | |
set-option -g status-right '%Y/%m/%d %H:%M' | |
# setw -g window-status-current-fg black | |
# setw -g window-status-current-bg white | |
# tmuxの設定を再読み込み | |
bind C-r source-file ~/.tmux.conf | |
# bind k kill-window | |
unbind x | |
bind x kill-pane | |
unbind C-g | |
unbind & | |
bind z clock-mode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment