Skip to content

Commit

Permalink
feat(tools): add chezmoi support
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jun 30, 2023
1 parent 29dc09d commit c5386d3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modules/me-tools.el
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,22 @@
(if (functionp pass) (funcall pass) pass))
""))))

(use-package chezmoi
:straight t
:commands
chezmoi-find chezmoi-write chezmoi-diff chezmoi-ediff
chezmoi-open-other chezmoi-sync-files chezmoi-magit-status
:init
(+map! :infix "o"
"c" '(nil :wk "chezmoi")
"cf" #'chezmoi-find
"cw" #'chezmoi-write
"cd" #'chezmoi-diff
"ce" #'chezmoi-ediff
"co" #'chezmoi-open-other
"cs" #'chezmoi-sync-files
"cg" #'chezmoi-magit-status))


(provide 'me-tools)

Expand Down

0 comments on commit c5386d3

Please sign in to comment.