Compare commits

..

No commits in common. "7383759af64634302171fde1fcddc515f0a09697" and "7751cb3a6d28c2676e8ce9e4f5031f5f7f4c5345" have entirely different histories.

3 changed files with 3 additions and 13 deletions
zsh/.config/zsh

View file

@ -13,7 +13,7 @@ alias ber="bundle exec rake"
alias bet="test-rails"
alias c="clear"
alias cs="toggle-color-mode"
alias cdr="git-root"
alias cdr='cd $(git root)'
alias dc="docker-compose-call"
alias g="g" # overwrite g alias
alias ga="git add"
@ -54,7 +54,7 @@ alias grbi="git rebase --interactive"
alias grc="git rm --cached"
alias grh="git reset --hard"
alias grm="git rm"
alias gst="git-since-last-tag"
alias gst="git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline"
alias gack='git log --pretty="%an <%ae>" | sort -u | fzf | xargs -I "{}" git add-trailer "Co-authored-by: {}"'
alias gup="git-branch-delete-merged"
alias Grep='grep'

View file

@ -70,16 +70,6 @@ function git-date-added {
fi
}
function git-since-last-tag {
git log $(git describe --tags --abbrev=0)..HEAD --no-merges --oneline
}
function git-root {
if [[ "$(git rev-parse --is-inside-work-tree)" == "true" ]]; then
cd $(git root)
fi
}
function password-generator {
if [ -x "$(command -v openssl)" ]; then
password=$(

View file

@ -3,7 +3,7 @@ precmd() {
autoload -Uz vcs_info
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*:prompt:*' formats "(%b)"
zstyle ':vcs_info:*:prompt:*' formats "[%b]"
vcs_info 'prompt'
}