diff options
-rw-r--r-- | config.org | 28 |
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 |