dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit c2def0f98da65da9fb8759f1a7d5ea231778d397
parent 347b817a6edf0cc645080290291929bb2a37e2fc
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Wed,  8 Jun 2022 12:59:39 +0200

emacs: misc settings

Diffstat:
Memacs/config.org | 13+++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1353,6 +1353,15 @@ I prefer using home-row keys instead of numbers: #+begin_src emacs-lisp (setq aw-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)) #+end_src + +Also, I want something a little more contrasty: + +#+begin_src emacs-lisp + (custom-set-faces + '(aw-leading-char-face + ((t (:inherit font-lock-keyword-face :height 2.0))))) +#+end_src + * Interface ** Start debugger on error #+begin_src emacs-lisp @@ -1764,10 +1773,10 @@ Change M-f to stop at the start of the word: (za/global-set-key (kbd "M-f") 'forward-to-word) #+end_src -Bind C-M-S-F to the old functionality of M-f (stop at end of word) +Bind ESC M-f to the old functionality of M-f (stop at end of word) #+begin_src emacs-lisp - (za/global-set-key (kbd "C-M-S-F") 'forward-word) + (za/global-set-key (kbd "ESC M-f") 'forward-word) #+end_src ** Rectangle insert string