Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@catatsuy
Created November 13, 2012 12:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catatsuy/4065439 to your computer and use it in GitHub Desktop.
Save catatsuy/4065439 to your computer and use it in GitHub Desktop.
Basic tmux config
# 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