From bdd2da67e90bfc6289539d205874abca24c7d9d6 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Thu, 2 May 2024 20:54:18 +0200 Subject: [PATCH] Use HOME env variable over tilde --- config.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/config.el b/config.el index bdda833..6977549 100644 --- a/config.el +++ b/config.el @@ -79,8 +79,7 @@ ;; If you use `org' and don't want your org files in the default location below, ;; change `org-directory'. It must be set before org loads! -(setq org-directory "~/Workspace/org/") - +(setq org-directory (concat (getenv "HOME") "/Workspace/org/")) ;; Whenever you reconfigure a package, make sure to wrap your config in an ;; `after!' block, otherwise Doom's defaults may override your settings. E.g. @@ -369,7 +368,7 @@ :mode (("\\.p4\\'" . p4_16-mode) ("\\.p4i\\'" . p4_16-mode))) -;; Navigate betweeon occurences of the same symbol. +;; Navigate between occurences of the same symbol. (use-package! symbol-overlay :bind (("M-RET" . symbol-overlay-put) ("M-n" . symbol-overlay-switch-forward)