Skip to content

Instantly share code, notes, and snippets.

@cygnetix
Created August 23, 2015 08:13
Show Gist options
  • Save cygnetix/af4a4cdc90abbcccee3b to your computer and use it in GitHub Desktop.
Save cygnetix/af4a4cdc90abbcccee3b to your computer and use it in GitHub Desktop.
tmux configuration file
# use ctrl+a instead of ctrl+b
unbind C-b
set -g prefix C-a
bind a send-prefix
# allow tmux to be reloaded
unbind r
bind r source-file ~/.tmux.conf
# set colours
set -g default-terminal "screen-256color"
set -g status-bg blue
set -g status-fg white
# unicode
setw -g utf8 on
set -g status-utf8 on
# window options
set-window-option -g automatic-rename off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment