From b0c3162fb64c4851f2bf2d7be5574b7b71cefcfb Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Mon, 9 Nov 2020 13:48:19 -0600 Subject: Change machine-specific logic --- config.org | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'config.org') 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~ #+end_src * Machine-specific configurations #+begin_src emacs-lisp - (cond - (*acdw/at-home* - (use-package su - :config - (su-mode 1)) - (use-package trashed - :custom - (delete-by-moving-to-trash t)) - (use-package exec-path-from-shell - :demand - :config - (exec-path-from-shell-initialize))) - ) + (use-package su + :when *acdw/at-home* + :config + (su-mode 1)) + + (use-package trashed + :when *acdw/at-home* + :custom + (delete-by-moving-to-trash t)) + + (use-package exec-path-from-shell + :when *acdw/at-home* + :demand + :config + (exec-path-from-shell-initialize))) #+end_src -- cgit 1.4.1-21-gabe81