diff --git a/code/init.el b/code/init.el index 7ef5297..097cf12 100644 --- a/code/init.el +++ b/code/init.el @@ -21,7 +21,8 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; os specific config -(when (eq system-type 'windows-nt) +(when (and (eq system-type 'windows-nt) + (not kmn/is-termux)) ; Fix resolution of ~ to match other client paths (setenv "HOME" "C:/Users/mcros/Nextcloud") (setq default-directory "C:/Users/mcros/Nextcloud") diff --git a/org/config-org-desktop.el b/org/config-org-desktop.el index acb52dd..41a84f0 100644 --- a/org/config-org-desktop.el +++ b/org/config-org-desktop.el @@ -6,8 +6,6 @@ (setq org-habit-graph-column 75) ; set ui to standard org-workspace at launch -(when (not kmn/is-dayjob) (add-hook 'after-init-hook (lambda () (kmn/workspace-org) )) -) diff --git a/org/init.el b/org/init.el index 79026c0..cbcf5fa 100644 --- a/org/init.el +++ b/org/init.el @@ -20,7 +20,8 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; os specific config -(when (eq system-type 'windows-nt) +(when (and (eq system-type 'windows-nt) + (not kmn/is-termux)) ; Fix resolution of ~ to match other client paths (setenv "HOME" "C:/Users/mcros/Nextcloud") (setq default-directory "C:/Users/mcros/Nextcloud")