about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-10 17:30:58 -0500
committerCase Duckworth2021-04-10 17:30:58 -0500
commit92f2f4c7678d90dc6a1b3a77ac673c5598c66558 (patch)
treef7495322db46d989ad37dbee2a9c69a40dfc5fb6 /init.el
parentAdd `:mode' setup form (diff)
downloademacs-92f2f4c7678d90dc6a1b3a77ac673c5598c66558.tar.gz
emacs-92f2f4c7678d90dc6a1b3a77ac673c5598c66558.zip
Reorganize a bit
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/init.el b/init.el index 1784039..5ec871f 100644 --- a/init.el +++ b/init.el
@@ -702,9 +702,10 @@ if ripgrep is installed, otherwise `consult-grep'."
702 (setup (:straight flyspell-correct) 702 (setup (:straight flyspell-correct)
703 (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper))) 703 (define-key flyspell-mode-map (kbd "C-;") #'flyspell-correct-wrapper)))
704 704
705(when (eq acdw/system :home) 705
706 (setup (:straight pkgbuild-mode))) 706;;; Programming
707 707
708;;; General tools
708(setup (:straight (apheleia :host github 709(setup (:straight (apheleia :host github
709 :repo "raxod502/apheleia")) 710 :repo "raxod502/apheleia"))
710 (apheleia-global-mode +1) 711 (apheleia-global-mode +1)
@@ -829,3 +830,6 @@ don't want."
829 (add-to-list 'auto-mode-alist '("\\.fs\\'" . forth-mode)) 830 (add-to-list 'auto-mode-alist '("\\.fs\\'" . forth-mode))
830 (autoload 'forth-block-mode "gforth") 831 (autoload 'forth-block-mode "gforth")
831 (add-to-list 'auto-mode-alist '("\\.fb\\'" . forth-block-mode))) 832 (add-to-list 'auto-mode-alist '("\\.fb\\'" . forth-block-mode)))
833
834(when (eq acdw/system :home)
835 (setup (:straight pkgbuild-mode)))