Last active
December 20, 2015 02:39
-
-
Save christoffer/6058198 to your computer and use it in GitHub Desktop.
Configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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