]> git.earman.xyz Git - emacsinit.git/commitdiff
Move libraries to after package loading
authorrearman <rearman@r717.net>
Thu, 11 Jun 2026 15:08:43 +0000 (11:08 -0400)
committerrearman <rearman@r717.net>
Thu, 11 Jun 2026 15:08:43 +0000 (11:08 -0400)
sedit-mouse freaks out if it can't find expand-region.

config.org

index 3d3f2844491e5f755d479fa1f8fcb38a77be5e56..e0f1fd099d86ec0df7dc34526bfea1cfb44f5ea1 100644 (file)
@@ -6,15 +6,6 @@ Set up the correct lexical binding to avoid screaming compiler
 #+BEGIN_SRC emacs-lisp
 ;;; config.el --- Emacs Configuration  -*- lexical-binding: t; -*-
 #+END_SRC
-* Load libraries
-Libraries Not from the package manager
-#+BEGIN_SRC emacs-lisp
-(dolist (path '("sedit-mouse/" "themes/"))
-  (add-to-list 'load-path (concat user-emacs-directory path)))
-
-(dolist (file '(eng-paper-theme sedit-mouse))
-  (require file))
-#+END_SRC
 * OS specific stuff
 #+BEGIN_SRC emacs-lisp
 (setq w32-recognize-altgr 'nil)
@@ -540,6 +531,15 @@ Shows the trash file as a dired buffer
                                    (:maildir "/Drafts" :key ?d)))))
 
 #+END_SRC
+* Load libraries
+Libraries Not from the package manager
+#+BEGIN_SRC emacs-lisp
+(dolist (path '("sedit-mouse/" "themes/"))
+  (add-to-list 'load-path (concat user-emacs-directory path)))
+
+(dolist (file '(eng-paper-theme sedit-mouse))
+  (require file))
+#+END_SRC
 * Editing
 ** UNIX/vi-like bindings
 =C-h=, =C-w=, =C-u=, et. al to work as I expect.  Some functions get re-bound when these take over a default.