diff options
author | Jesús <heckyel@hyperbola.info> | 2019-03-03 19:46:51 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-03-03 19:46:51 -0500 |
commit | 6457d54ec74f54b331039ccb2949ba13dbe87706 (patch) | |
tree | e3ce63a214cc9289e2b0869fc80da967da0d91b8 /modules/init-editing-utils.el | |
parent | ee86ebea76af981a1ab5f2c8f4f31a520479d8fb (diff) | |
download | emacs-personal-6457d54ec74f54b331039ccb2949ba13dbe87706.tar.lz emacs-personal-6457d54ec74f54b331039ccb2949ba13dbe87706.tar.xz emacs-personal-6457d54ec74f54b331039ccb2949ba13dbe87706.zip |
Do not hard-code ~/emacs.d
Instead, use user-emacs-directory
Diffstat (limited to 'modules/init-editing-utils.el')
-rw-r--r-- | modules/init-editing-utils.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/init-editing-utils.el b/modules/init-editing-utils.el index 35e34d1..be6d047 100644 --- a/modules/init-editing-utils.el +++ b/modules/init-editing-utils.el @@ -76,7 +76,7 @@ (global-undo-tree-mode 1)) ;;---------------------------------------------------------------------------- -(load-file "~/.emacs.d/modules/lib/myemacs.el") +(load-file (concat user-emacs-directory "/modules/lib/myemacs.el")) (provide 'init-editing-utils) |