diff --git a/.bash_profile b/.bash_profile index fd3e4b5..0d18daf 100644 --- a/.bash_profile +++ b/.bash_profile @@ -31,6 +31,8 @@ alias gs='git status' alias gc='git commit' alias gcam='git commit -am' alias gl='git log --graph --pretty=format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset" --abbrev-commit' +alias gsd='git svn dcommit' +alias gsfr='git svn fetch && git svn rebase' # Turn on Git autocomplete. if [ -f ~/.git-completion.bash ]; then @@ -39,3 +41,7 @@ fi # Disable cowsay in Ansible. export ANSIBLE_NOCOWS=1 + +# Ansible aliases. +alias an='ansible' +alias anplay='ansible-playbook' diff --git a/.inputrc b/.inputrc index 5c1c7d4..72a1ff6 100644 --- a/.inputrc +++ b/.inputrc @@ -3,4 +3,5 @@ "\e[A": history-search-backward "\e[B": history-search-forward set show-all-if-ambiguous on -set completion-ignore-case on \ No newline at end of file +set completion-ignore-case on +set editing-mode vi