zshconfig/zsh/fn.zsh
2024-03-13 22:12:02 +01:00

23 lines
376 B
Bash

alias zshconfig="micro ~/.zshrc"
alias zshrefresh="source ~/.zshrc"
function zshupdate() {
cd "$HOME/.config/zshconfig"
git pull
cd -
}
# rename <OLD> <NEW>
# rename files with replace pattern
function rename() {
rnr -f --no-dump "$1" "$2" ./*
}
alias cat="bat -p"
alias gfold="gfold -d classic"
function hs() {
rg "$1" ~/.zsh_history
}
alias notes="codium ~/Notes"