Created
November 20, 2023 19:09
-
-
Save j1ah0ng/d0b30a68484d83f4eba3fc8f1bd6176a to your computer and use it in GitHub Desktop.
zshrc
This file contains 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
alias gd='git diff' | |
alias gdn='git diff --name-only' | |
alias gdm='git diff $(git merge-base develop HEAD)' | |
alias gdmn='git diff $(git merge-base develop HEAD) --name-only' | |
VI_MODE_SET_CURSOR=true | |
VI_MODE_RESET_PROMPT_ON_MODE_CHANGE=true | |
alias graph='git log --graph --all --pretty=oneline' | |
alias ggraph='git log --graph --pretty=oneline' | |
alias fd="fdfind" | |
# Setting fd as the default source for fzf | |
export FZF_DEFAULT_COMMAND="fdfind" | |
alias vimdiff="nvim -d" | |
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment