punkfairie
91ce6c48d6
Update .config/fish/conf.d/20-gpg.fish Update .config/fish/conf.d/30-chezmoi.fish Update .config/fish/conf.d/30-eza.fish Update .config/fish/conf.d/30-fzf.fish Update .config/fish/conf.d/30-git.fish Update .config/fish/conf.d/30-go.fish Update .config/fish/conf.d/30-journalctl.fish Update .config/fish/conf.d/30-lazygit.fish Update .config/fish/conf.d/30-less.fish Update .config/fish/conf.d/30-php.fish Remove .config/fish/conf.d/30-polybar.fish Update .config/fish/conf.d/30-systemctl.fish Update .config/fish/conf.d/30-volta.fish Update .config/fish/conf.d/30-wget.fish Update .config/fish/conf.d/30-yay.fish Update .config/fish/conf.d/30-bitwarden.fish Update .config/topgrade.d/01-commands.toml
14 lines
517 B
Fish
14 lines
517 B
Fish
#!/usr/bin/env fish
|
|
|
|
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"
|
|
|
|
abbr -a czct --position command "chezmoi chattr +t"
|
|
|
|
abbr -a czcm --position command 'git aa && git c -m "$(chezmoi generate git-commit-message)" && git p'
|
|
end
|