Skip to content

Instantly share code, notes, and snippets.

@thoferon
Created November 29, 2012 13:19
Show Gist options
  • Save thoferon/4169005 to your computer and use it in GitHub Desktop.
Save thoferon/4169005 to your computer and use it in GitHub Desktop.
Configuration files
[alias]
st = status
br = branch
co = checkout
ci = commit
[user]
name = Thomas Feron
email = /email/
[color]
branch = auto
diff = auto
interactive = auto
status = auto
set -g prefix C-a
unbind C-b
set -sg escape-time 1
bind r source-file ~/.tmux.conf
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind | split-window -h
bind - split-window -v
bind -r H resize-pane -L 3
bind -r J resize-pane -D 3
bind -r K resize-pane -U 3
bind -r L resize-pane -R 3
set -g default-terminal "screen-256color"
set -g status-bg black
set -g status-fg white
setw -g monitor-activity on
set -g visual-activity on
set nocompatible
syntax on
filetype on
filetype indent on
filetype plugin on
set shiftwidth=2
set tabstop=2
set smartindent
set expandtab
autocmd BufWritePre * :%s/\s\+$//e
colorscheme wombat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment