2024-04-14 18:41:15 -07:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
2024-10-02 21:01:45 -07:00
|
|
|
if command -v chezmoi &>/dev/null
|
|
|
|
abbr -a cz --position command chezmoi
|
|
|
|
abbr -a czap --position command "chezmoi apply"
|
|
|
|
abbr -a cza --position command "chezmoi add"
|
|
|
|
abbr -a czc --position command "chezmoi cd"
|
|
|
|
abbr -a cze --position command "chezmoi edit"
|
|
|
|
abbr -a czu --position command "chezmoi update"
|
2024-04-18 21:39:49 -07:00
|
|
|
|
2024-10-02 21:01:45 -07:00
|
|
|
abbr -a czct --position command "chezmoi chattr +t"
|
2024-04-22 19:37:14 -07:00
|
|
|
|
2024-10-02 21:01:45 -07:00
|
|
|
abbr -a czcm --position command 'git aa && git c -m "$(chezmoi generate git-commit-message)" && git p'
|
|
|
|
end
|