Created
January 7, 2014 15:50
-
-
Save t-kashima/8301364 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-tunbind-key C-b | |
bind-key C-t send-prefix | |
# ウィンドウ・ペインの最初の番号を指定を1に。デフォルトだと0から | |
set -g base-index 1 | |
set -g pane-base-index 1set -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の設定を再読み込み | |
unbind r | |
bind r source-file ~/.tmux.conf | |
unbind C-g | |
unbind & | |
unbind ! | |
bind z clock-mode | |
set-window-option -g mode-mouse on | |
unbind 0 | |
unbind 1 | |
unbind k | |
bind 1 break-pane | |
bind 2 split-window -v | |
bind 3 split-window -h | |
bind 0 kill-pane | |
bind k kill-window | |
# bind j run-shell 'uim-fep -s lastline -S' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment