From 357f381140ab86488c2aa463211784df286ea4fe Mon Sep 17 00:00:00 2001 From: Ashton Wiersdorf Date: Tue, 29 Aug 2023 17:39:42 -0600 Subject: Fix example mixin load paths --- init.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/init.el b/init.el index 1140969..edbbde8 100644 --- a/init.el +++ b/init.el @@ -198,26 +198,26 @@ If the new path's directories does not exist, create them." ;; Uncomment these lines or copy from the mixin/ files as you see fit ;; UI/UX enhancements mostly focused on minibuffer and autocompletion interfaces -;(load-file "mixins/base.el") +;(load-file (expand-file-name "mixins/base.el" user-emacs-directory)) ;; Packages for software development -;(load-file "mixins/dev.el") +;(load-file (expand-file-name "mixins/dev.el" user-emacs-directory)) ;; Org-mode configuration ;; WARNING: need to customize things inside the mixin file before use! See ;; the file mixins/org-intro.txt for help. -;(load-file "mixins/org.el") +;(load-file (expand-file-name "mixins/org.el" user-emacs-directory)) ;; Email configuration in Emacs ;; WARNING: needs the `mu' program installed; see the mixin file for more ;; details. -;(load-file "mixins/email.el") +;(load-file (expand-file-name "mixins/email.el" user-emacs-directory)) ;; Tools for academic researchers -;(load-file "mixins/researcher.el") +;(load-file (expand-file-name "mixins/researcher.el" user-emacs-directory)) ;; Vim-bindings in Emacs (evil-mode configuration) -;(load-file "mixins/vim-like.el") +;(load-file (expand-file-name "mixins/vim-like.el" user-emacs-directory)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; -- cgit v1.2.3