From 23d36d3c270716d667b9e1affa6c2486ba0eeb27 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 26 Oct 2019 23:42:16 -0400 Subject: [PATCH] Rebind 'C-{-,=}'; bind 'M-C-{-,=}' The former is buffer-local, the latter is frame-local. --- modules/config/default/+evil-bindings.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 3d41520af..a87a1d78f 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -86,8 +86,12 @@ ;; misc :n "C-S-f" #'toggle-frame-fullscreen :n "C-+" #'doom/reset-font-size - :n "C-=" #'doom/increase-font-size - :n "C--" #'doom/decrease-font-size) + ;; Buffer-local font resizing + :n "C-=" #'text-scale-increase + :n "C--" #'text-scale-decrease + ;; Frame-local font resizing + :n "M-C-=" #'doom/increase-font-size + :n "M-C--" #'doom/decrease-font-size) ;;