Skip to content

Instantly share code, notes, and snippets.

@MattDietz
Created August 22, 2012 20:40
Show Gist options
  • Save MattDietz/3429125 to your computer and use it in GitHub Desktop.
Save MattDietz/3429125 to your computer and use it in GitHub Desktop.
tmux config so far
set -g default-terminal "screen-256color"
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
# force a reload of the config file
unbind r
bind r source-file ~/.tmux.conf
# quick pane cycling
unbind ^A
bind ^A select-pane -t :.+
bind ^a last-window
unbind A
bind A command-prompt "rename-window %%"
unbind '"'
bind '"' choose-window
unbind w
bind w split-window -v
unbind v
bind v split-window -h
# Set status bar
set -g status-bg black
set -g status-fg white
set -g window-status-current-bg colour12
set -g window-status-current-fg colour15
setw -g mode-keys vi
setw -g monitor-activity on
set -g visual-activity on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment