19 lines
856 B
Cheetah
19 lines
856 B
Cheetah
# Commands to run before anything
|
|
[pre_commands]
|
|
# "Emacs Snapshot" = "rm -rf ~/.emacs.d/elpa.bak && cp -rl ~/.emacs.d/elpa ~/.emacs.d/elpa.bak"
|
|
|
|
|
|
# Commands to run after anything
|
|
[post_commands]
|
|
# "Emacs Snapshot" = "rm -rf ~/.emacs.d/elpa.bak && cp -rl ~/.emacs.d/elpa ~/.emacs.d/elpa.bak"
|
|
|
|
|
|
# Custom commands
|
|
[commands]
|
|
"Fish Shell Completions" = "fish_update_completions"
|
|
{{ if lookPath "yay" -}}
|
|
"Update package list" = "yay -Qeq > {{ joinPath .chezmoi.sourceDir "dot_config/packages/" .chezmoi.hostname }} && set_color green && printf '%s' && set_color normal && printf '%s' ' done\n'"
|
|
{{ end -}}
|
|
{{if lookPath "brew" -}}
|
|
"Update Brewfile" = "brew bundle dump --describe --force --file={{ joinPath .chezmoi.sourceDir "dot_config/packages/Brewfile" }} && set_color green && printf '%s' && set_color normal && printf '%s' ' done\n'"
|
|
{{ end -}}
|