fix: include forgotten modifications from last commit

This commit is contained in:
Rekai Nyangadzayi Musuka 2020-11-17 20:30:36 -06:00
parent 121b9ef7cf
commit ca511ee298
2 changed files with 1 additions and 25 deletions

2
.zshrc
View File

@ -110,7 +110,7 @@ source $ZSH/oh-my-zsh.sh
# alias ohmyzsh="mate ~/.oh-my-zsh"
# Source Personal Config
source ~/paoda.zsh
source ~/.paodarc
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh

View File

@ -1,24 +0,0 @@
#!/usr/bin/zsh
# Make ZSH behave like vim
bindkey -v
# Aliases
alias yay="yay --aur"
alias ls="exa"
alias ll="exa -albh"
alias cat="bat"
alias vim="nvim"
alias find="fd"
alias grep="rg"
# Functions
dotfile() {
if [[ "$1" = "status" ]]; then
git --git-dir="$HOME"/.dotfiles/ --work-tree="$HOME" status -uno;
else
git --git-dir="$HOME"/.dotfiles/ --work-tree="$HOME" "$@";
fi
}
# Re-enable reverse-i-search
bindkey '^R' history-incremental-search-backward