diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -189,21 +189,24 @@ If the new path's directories does not exist, create them." :config (load-theme 'modus-vivendi)) ; for light theme, use modus-operandi - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Optional mixins ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; Uncomment these lines or copy from the mixin/ files as you see fit +;; Uncomment the (load-file …) lines or copy from the mixin/ files as desired ;; UI/UX enhancements mostly focused on minibuffer and autocompletion interfaces +;; These ones are *strongly* recommended! ;(load-file (expand-file-name "mixins/base.el" user-emacs-directory)) ;; Packages for software development ;(load-file (expand-file-name "mixins/dev.el" user-emacs-directory)) +;; Vim-bindings in Emacs (evil-mode configuration) +;(load-file (expand-file-name "mixins/vim-like.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. @@ -217,9 +220,6 @@ If the new path's directories does not exist, create them." ;; Tools for academic researchers ;(load-file (expand-file-name "mixins/researcher.el" user-emacs-directory)) -;; Vim-bindings in Emacs (evil-mode configuration) -;(load-file (expand-file-name "mixins/vim-like.el" user-emacs-directory)) - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Built-in customization framework |