summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-09 13:48:19 -0600
committerCase Duckworth2020-11-09 13:48:19 -0600
commitb0c3162fb64c4851f2bf2d7be5574b7b71cefcfb (patch)
tree9485b5f408a34e9d634c893ae2788249795d1f35 /config.org
parentAdd ox-gemini (diff)
downloademacs-b0c3162fb64c4851f2bf2d7be5574b7b71cefcfb.tar.gz
emacs-b0c3162fb64c4851f2bf2d7be5574b7b71cefcfb.zip
Change machine-specific logic
Diffstat (limited to 'config.org')
-rw-r--r--config.org28
1 files changed, 15 insertions, 13 deletions
diff --git a/config.org b/config.org index 69a5d4f..36fb0da 100644 --- a/config.org +++ b/config.org
@@ -803,17 +803,19 @@ I was using company, but I think it might've been causing issues with ~awk-mode~
803#+end_src 803#+end_src
804* Machine-specific configurations 804* Machine-specific configurations
805#+begin_src emacs-lisp 805#+begin_src emacs-lisp
806 (cond 806 (use-package su
807 (*acdw/at-home* 807 :when *acdw/at-home*
808 (use-package su 808 :config
809 :config 809 (su-mode 1))
810 (su-mode 1)) 810
811 (use-package trashed 811 (use-package trashed
812 :custom 812 :when *acdw/at-home*
813 (delete-by-moving-to-trash t)) 813 :custom
814 (use-package exec-path-from-shell 814 (delete-by-moving-to-trash t))
815 :demand 815
816 :config 816 (use-package exec-path-from-shell
817 (exec-path-from-shell-initialize))) 817 :when *acdw/at-home*
818 ) 818 :demand
819 :config
820 (exec-path-from-shell-initialize)))
819#+end_src 821#+end_src