Skip to content

Instantly share code, notes, and snippets.

@christoffer
Last active December 20, 2015 02:39
Show Gist options
  • Save christoffer/6058198 to your computer and use it in GitHub Desktop.
Save christoffer/6058198 to your computer and use it in GitHub Desktop.
Configs
export EDITOR=vim
export PS1="\n\w\n\$ "
export TERM=xterm-256color
alias gb="git branch"
alias gg="git grep"
alias gs="git status"
alias ga="git add"
alias gd="git diff"
alias gc="git commit"
alias gp="git push"
alias gms="git merge --squash"
alias gco="git checkout"
alias gff="git pull --ff-only"
alias gpr="git pull --rebase"
alias ls="ls -G"
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
[merge]
tool = meld
summary = true
stat = true
[alias]
unstage = reset HEAD
[core]
excludesfile = /Users/christoffer/.gitignore
quotepath = false
whitespace = trailing-space,space-before-tab
[user]
email = [email protected]
name = Christoffer Klang
[advice]
statusHints = false
[diff]
renames = copies
se noswapfile
se nowritebackup
se nobackup
se ts=2
se tw=0
se sw=2
se expandtab
se nowrap
se hidden
se nocompatible
se smartcase
se scrolloff=5
se undolevels=10000
se encoding=utf-8
se cin
se nosi
se noai
filetype plugin indent on
syntax on
se list
se listchars=trail:·
se number
se nohlsearch
se nojoinspaces
se guicursor+=a:blinkon0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment