Skip to content

Instantly share code, notes, and snippets.

@ihodes
Created May 13, 2014 15:34
Show Gist options
  • Save ihodes/524ca1287a26d0adaf94 to your computer and use it in GitHub Desktop.
Save ihodes/524ca1287a26d0adaf94 to your computer and use it in GitHub Desktop.
# because... emacs
unbind C-b
set -g prefix C-z
# intuitive window splitting
unbind %
bind | split-window -h
bind _ split-window -v
# my preferred copy-mode
unbind [
bind = copy-mode
set -g default-terminal "screen-256color-new"
# Start windows' numbering at 1
set -g base-index 1
# Otherwise problem occur with mah large screenz
setw -g aggressive-resize on
# Better status bar
set-window-option -g window-status-current-bg "#acacac"
set-window-option -g window-status-current-fg black
set-window-option -g status-bg "#121212"
set-window-option -g status-fg "#acacac"
# Allows use of pbcopy, pbpaste and launchctl within tmux (program downloaded using brew)
set-option -g default-command "reattach-to-user-namespace -l bash"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment