Skip to content

Instantly share code, notes, and snippets.

View Domi-cc's full-sized avatar
🦾
automate it!

Dominik Haßelkuss Domi-cc

🦾
automate it!
  • Kempten, Allgäu
View GitHub Profile
@cebe
cebe / .bashrc
Last active September 19, 2016 18:16
.bashrc + .vimrc
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# simple history browsing
export HISTCONTROL=erasedups
export HISTSIZE=10000
shopt -s histappend
bind '"\e[A"':history-search-backward
bind '"\e[B"':history-search-forward
@cebe
cebe / .bash_profile
Last active May 1, 2016 01:48
My git config
# git bash completion
. /usr/local/git/contrib/completion/git-completion.bash
alias g="git status"