]> git.earman.xyz Git - emacsinit.git/commitdiff
move pretty symbols out of mode-line config
authorrush <rearman@r717.net>
Wed, 24 Jun 2026 19:57:26 +0000 (15:57 -0400)
committerrush <rearman@r717.net>
Wed, 24 Jun 2026 19:58:22 +0000 (15:58 -0400)
config.org

index 4690d6482c061de5c124129907b2da8b3da519ec..ee176906d67c98242ac0c99fcd3ef6094b2f3e64 100644 (file)
@@ -469,7 +469,7 @@ Libraries Not from the package manager
 (keymap-global-set "<end>" #'end-of-buffer)\r
 #+END_SRC\r
 * Commenting and defun-level bindings\r
-#+BEGIN_SRC emacs-lisp\r
+#+BEGIN_SRC emacs-lisp\r\r
 (defun re/comment-dwim (&optional arg)\r
   "Comment region if active, otherwise comment line.\r
   Stolen from https://depp.brause.cc/dotemacs"\r
@@ -925,7 +925,17 @@ Stolen from https://www.masteringemacs.org/article/fixing-mark-commands-transien
                                 mode-line-modes\r
                                 (:eval (number-to-string (line-number-at-pos (point-max))))\r
                                 " Lines | %Ib "))\r
+#+END_SRC\r
+*** Minions\r
+Remove all minor modes from the mode-line, and show /all/ of them in the minor mode menu.  Must come after any modeline customization\r
+#+BEGIN_SRC emacs-lisp\r
+(require 'minions)\r
+(minions-mode)\r
 \r
+(setq minions-mode-line-lighter "|+")\r
+#+END_SRC\r
+** Pretty Symbols\r
+#+BEGIN_SRC emacs-lisp\r
 (setq prettify-symbols-alist '(("lambda" . 955)\r
                               ("delta" . 120517)\r
                               ("epsilon" . 120518)\r
@@ -935,14 +945,6 @@ Stolen from https://www.masteringemacs.org/article/fixing-mark-commands-transien
 \r
 (global-prettify-symbols-mode t)\r
 #+END_SRC\r
-*** Minions\r
-Remove all minor modes from the mode-line, and show /all/ of them in the minor mode menu.  Must come after any modeline customization\r
-#+BEGIN_SRC emacs-lisp\r
-(require 'minions)\r
-(minions-mode)\r
-\r
-(setq minions-mode-line-lighter "|+")\r
-#+END_SRC\r
 * Parens\r
 Must be set after loading any theme\r
 #+BEGIN_SRC emacs-lisp\r