From 012e5881a28c07033aca32aae3ad23c503c1c243 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Wed, 6 Jul 2022 09:47:17 +0300 Subject: [PATCH] Enable repeat-mode --- .emacs.d/esy.org | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.emacs.d/esy.org b/.emacs.d/esy.org index c6c043a..95c2f03 100644 --- a/.emacs.d/esy.org +++ b/.emacs.d/esy.org @@ -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 -- 2.39.5