7 lines
248 B
Bash
7 lines
248 B
Bash
alias subl="nvim"
|
|
alias rm="garbage put"
|
|
alias cm="chezmoi"
|
|
alias kill-gpg-agent="gpgconf --kill gpg-agent"
|
|
|
|
ced() { chezmoi edit $1 && chezmoi -v apply }
|
|
cpush() { chezmoi git add . -- -A && chezmoi git commit -- -m "update" && chezmoi git push }
|