diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 27 |
1 files changed, 14 insertions, 13 deletions
@@ -18,7 +18,7 @@ ;;; - Interface enhancements/defaults ;;; - Tab-bar configuration ;;; - Theme -;;; - Optional mixins +;;; - Optional extras ;;; - Built-in customization framework ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -116,7 +116,7 @@ If the new path's directories does not exist, create them." (keymap-set minibuffer-mode-map "TAB" 'minibuffer-complete) ; TAB acts more like how it does in the shell ;; For a fancier built-in completion option, try ido-mode or fido-mode. See also -;; the file mixins/base.el +;; the file extras/base.el ;(fido-vertical-mode) ;(setq icomplete-delay-completions-threshold 4000) @@ -191,34 +191,35 @@ If the new path's directories does not exist, create them." ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; -;;; Optional mixins +;;; Optional extras ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; Uncomment the (load-file …) lines or copy from the mixin/ files as desired +;; Uncomment the (load-file …) lines or copy code from the extras/ elisp 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)) +;(load-file (expand-file-name "extras/base.el" user-emacs-directory)) ;; Packages for software development -;(load-file (expand-file-name "mixins/dev.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/dev.el" user-emacs-directory)) ;; Vim-bindings in Emacs (evil-mode configuration) -;(load-file (expand-file-name "mixins/vim-like.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/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. -;(load-file (expand-file-name "mixins/org.el" user-emacs-directory)) +;; WARNING: need to customize things inside the elisp file before use! See +;; the file extras/org-intro.txt for help. +;(load-file (expand-file-name "extras/org.el" user-emacs-directory)) ;; Email configuration in Emacs -;; WARNING: needs the `mu' program installed; see the mixin file for more +;; WARNING: needs the `mu' program installed; see the elisp file for more ;; details. -;(load-file (expand-file-name "mixins/email.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/email.el" user-emacs-directory)) ;; Tools for academic researchers -;(load-file (expand-file-name "mixins/researcher.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/researcher.el" user-emacs-directory)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; |