Skip to content

Instantly share code, notes, and snippets.

@a-yasui
Created June 25, 2013 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-yasui/5857121 to your computer and use it in GitHub Desktop.
Save a-yasui/5857121 to your computer and use it in GitHub Desktop.
僕の .tmux.conf
set-option default-shell /bin/zsh
# Prefix
set-option -g prefix C-z
# 日本語環境なら必須??
setw -g utf8 on
set -g status-utf8 on
# status
set -g status-interval 10
set -g status-bg colour100
setw -g window-status-current-fg black
setw -g window-status-current-bg white
# pane-active-border
set -g pane-active-border-fg white
# KeyBindings
# pane
unbind 1
bind 1 break-pane
bind 2 split-window -v
bind 3 split-window -h
bind C-r source-file ~/.tmux.conf
bind C-k kill-pane
#bind k kill-window
unbind &
bind -r ^[ copy-mode
bind -r ^] paste-buffer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment