23 lines
376 B
Bash
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"
|