aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org/oni-org.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-01-21 21:47:22 -0800
committerGravatar Tom Willemse2020-01-21 21:47:22 -0800
commit353b332b72beecd823d8c528431ceda95242d6a9 (patch)
tree25a87756e69a018de0c7b181762095dd7492fad7 /oni-org/oni-org.el
parenta2fb6a7609b36d04e3b498ceac89e34ac1ea5d27 (diff)
downloademacs-config-353b332b72beecd823d8c528431ceda95242d6a9.tar.gz
emacs-config-353b332b72beecd823d8c528431ceda95242d6a9.zip
Change directory of org documents on Windows
Instead of using u: I should make a symlink to u: from my Documents to keep things consistent.
Diffstat (limited to 'oni-org/oni-org.el')
-rw-r--r--oni-org/oni-org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el
index fb56fb7..530100f 100644
--- a/oni-org/oni-org.el
+++ b/oni-org/oni-org.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2020.0114.231111
+;; Version: 2020.0121.214325
;; Package-Requires: (oni-yasnippet org-plus-contrib org-bullets hydra org-wild-notifier)
;; This program is free software; you can redistribute it and/or modify
@@ -49,7 +49,7 @@
"Expand FILE-NAME to the base directory for that system.
The base for all org files on Windows is u:/, but on my linux
installs it will always be ~."
- (let ((base-dir (if (eq system-type 'windows-nt) "u:/" "~")))
+ (let ((base-dir "~"))
(expand-file-name file-name base-dir)))
(defun oni-org-setup-prettify-symbols-mode ()