From dd3fea2128a667f6d8e1a348a6d22e5dcc58aad6 Mon Sep 17 00:00:00 2001 From: Michael Campagnaro Date: Wed, 4 Nov 2015 14:25:27 -0500 Subject: [PATCH] Update vimrc, aliases and dict --- vim/spell/en.utf-8.add | 14 ++++++++++++++ vim/spell/en.utf-8.add.spl | Bin 904 -> 1045 bytes vimrc | 7 ++++--- zsh/aliases | 14 +++++++++----- 4 files changed, 27 insertions(+), 8 deletions(-) diff --git a/vim/spell/en.utf-8.add b/vim/spell/en.utf-8.add index e93bc3c..313e80d 100644 --- a/vim/spell/en.utf-8.add +++ b/vim/spell/en.utf-8.add @@ -67,3 +67,17 @@ schemas multimethod defmethod devcards +modal's +fallback +truthy +destructured +clickable +autoplaying +YouTube +bool +UI +px +google +https +youtube +HD diff --git a/vim/spell/en.utf-8.add.spl b/vim/spell/en.utf-8.add.spl index 494e3c598a170b74c723de6ee3b51be6a1032205..86f57eac67c1fbd95cabce7ec9c9093fcacea5cd 100644 GIT binary patch literal 1045 zcmYLI%Z}7A5Oh0%FW?w1QM7wUhz|fR%R@q1gv5yVK8#bGm;EUjr$yV5begE^NTgH| zNy*yLOo2vnRMLqoV^=cc}|;PV6pdoz`@RK!p@8ZnTP8 zRkR3+k%o5oH<8g=M--S486mCj$x|z;qMdE-j+#l8N$WQ5;lNWw@`Mtb_DlmAAU!kZ z@GmyA2yHer4L)hyjQ9~xgCD?$3c^@h4~(l}UySI}Z~HYqF_sT?hRH^Zaz?4S zV(tNP`v(NLh|DXiBvJh5*NBUeKNdMW`*^+yIBKrc0Kl3ZpPJry*f@(MD`6~)s028tX_B*-}+@^j^Jd*@P{IVs%~+mlbcNDPK " Make it easier to jump around the command line. The default behaviour is " using the arrow keys with or without shift -:cnoremap -:cnoremap +:cnoremap +:cnoremap """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " ABBREVIATIONS diff --git a/zsh/aliases b/zsh/aliases index b83e349..93ab394 100644 --- a/zsh/aliases +++ b/zsh/aliases @@ -96,9 +96,10 @@ alias zsh='vim ~/.zshrc' # Git -alias ammend='amend' -alias amend='git commit --amend' -alias amends='git commit -S --amend' +alias am='git commit --amend' +alias ams='git commit -S --amend' # signed +alias ammend='echo "use am instead"' +alias amend='echo "use am instead"' alias g='gst' alias ga='git add -A :/' alias gaa='git add -A' @@ -107,6 +108,8 @@ alias gb='git branch' alias gbd='git branch -D' alias gbl='git branch --all' alias gbm='git branch -m' +alias gbr='git branch -rv' +alias gbv='git branch -v' alias gc='git commit' alias gcs='git commit -S' alias gcl='git clone' @@ -131,6 +134,7 @@ alias gfixs="git commit -S -a --amend -C HEAD" # signed alias gfo='git fetch origin' alias gfm='git fetch origin master' alias gfup='git fetch upstream' +alias ggrep='git log --all --oneline | grep ' alias gh="source ~/.githelpers && show_git_head" alias gla='git lg --all' alias gl='git lg -30' @@ -138,7 +142,7 @@ alias gll='git lg' alias gli='git show --pretty="format:" --name-only' alias glog='git log' alias gm='git merge' -alias gmnoff='git merge --no-ff' +alias gmnff='git merge --no-ff' alias gmff='git merge --ff-only' alias gmffm='git merge --ff-only master' alias gmffs='git merge --ff-only --squash' @@ -199,7 +203,7 @@ alias gta='git tag -a' alias gtd='git tag -d' alias gtl='git tag -l' alias gx='git reset --hard' -alias gxx='git reset --hard HEAD~1 && git pull --ff-only' +alias gxx='git reset --hard HEAD~1' # git stats alias gstats="echo 'Total commits: $(git rev-list HEAD --count)'; echo '\nAuthor breakdown:'; git shortlog | grep -E '^[^ ]'" alias gwip="git add . && git commit -m \"WIP\""