From effca9040387d180d429ecb01d8fe330fa450125 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sun, 19 Mar 2023 21:09:57 -0400 Subject: [PATCH] add justfile integration --- dot_config/doom/config.org.tmpl | 8 ++++++++ dot_config/doom/packages.el | 2 ++ 2 files changed, 10 insertions(+) diff --git a/dot_config/doom/config.org.tmpl b/dot_config/doom/config.org.tmpl index b5744295194543d80c18cc8764759d115c6a0b83..5e664c39ecc72318cd4501b1b7b6d4eaf631a78d 100644 --- a/dot_config/doom/config.org.tmpl +++ b/dot_config/doom/config.org.tmpl @@ -334,6 +334,14 @@ Use git flow in magit status buffers (add-hook 'magit-mode-hook 'turn-on-magit-gitflow) #+END_SRC +** Justfiles + +#+BEGIN_SRC emacs-lisp +(use-package! justl + :config + (map! :n "e" 'justl-exec-recipe)) +#+END_SRC + * Custom bindings Following established Doom conventions, bind ~SPC g p~ to ~magit-push-current-to-upstream~ diff --git a/dot_config/doom/packages.el b/dot_config/doom/packages.el index ab777e5c0b30fe0192200cf9e0ac320b6ae99d80..224fa2e37d87456933dcf5bf840eb90298fa5d13 100644 --- a/dot_config/doom/packages.el +++ b/dot_config/doom/packages.el @@ -22,6 +22,8 @@ (package! tree-sitter-langs) (package! writeroom-mode) (package! tidal) +(package! just-mode) +(package! justl) ;; To install a package directly from a remote git repo, you must specify a ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: