]> git.eshelyaron.com Git - dotfiles.git/commitdiff
Enable repeat-mode
authorEshel Yaron <me@eshelyaron.com>
Wed, 6 Jul 2022 06:47:17 +0000 (09:47 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 6 Jul 2022 06:47:17 +0000 (09:47 +0300)
.emacs.d/esy.org

index c6c043a678f6e68524d035024ebd07cb13ce37c9..95c2f035a9e56c04f9e2f815d106e7133c1f84bc 100644 (file)
@@ -274,7 +274,7 @@ For a list of available frame parameters, see [[info:elisp#Frame Parameters][eli
   (put 'suspend-frame 'disabled t)
 #+end_src
 
-** Variable pitch font
+** Variable-pitch font
 :PROPERTIES:
 :CUSTOM_ID: variable-pitch-font
 :END:
@@ -283,6 +283,15 @@ For a list of available frame parameters, see [[info:elisp#Frame Parameters][eli
   (set-face-font 'variable-pitch "Iosevka Etoile-13")
 #+end_src
 
+** Fixed-pitch font
+:PROPERTIES:
+:CUSTOM_ID: fixed-pitch-font
+:END:
+
+#+begin_src emacs-lisp
+  (set-face-font 'fixed-pitch "Iosevka-13")
+#+end_src
+
 ** More display settings
 :PROPERTIES:
 :CUSTOM_ID: display-goodies
@@ -1344,6 +1353,9 @@ does in the shell.
 #+end_src
 
 * Text mode and derivatives
+:PROPERTIES:
+:CUSTOM_ID: text-mode
+:END:
 #+begin_src emacs-lisp
   (add-hook 'text-mode-hook #'flyspell-mode)
 #+end_src
@@ -1625,6 +1637,9 @@ without asking each time.
 :END:
 
 ** Kill =shell= buffers on exit
+:PROPERTIES:
+:CUSTOM_ID: shell-kill-on-exit
+:END:
 Kill =M-x shell= buffers automatically when the shell process
 terminates, e.g. when pressing =C-d=.
 
@@ -1655,7 +1670,6 @@ terminates, e.g. when pressing =C-d=.
     (keymap-set shell-mode-map "C-c C-k" #'shell-restart-process))
 #+end_src
 
-
 * Misc. settings
 :PROPERTIES:
 :CUSTOM_ID: misc
@@ -1720,6 +1734,15 @@ Add the timezones of places of interest to the list of clocks shown by
                 #'process-menu-restart-process))
 #+end_src
 
+** Enable =repeat-mode=
+:PROPERTIES:
+:CUSTOM_ID: repeat-mode
+:END:
+
+#+begin_src emacs-lisp
+  (repeat-mode)
+#+end_src
+
 * Elisp Footer
 :PROPERTIES:
 :CUSTOM_ID: footer