Skip to content

Instantly share code, notes, and snippets.

@t-kashima
Created January 7, 2014 15:50
Show Gist options
  • Save t-kashima/8301364 to your computer and use it in GitHub Desktop.
Save t-kashima/8301364 to your computer and use it in GitHub Desktop.
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