Rebind 'C-{-,=}'; bind 'M-C-{-,=}'

The former is buffer-local, the latter is frame-local.
This commit is contained in:
Henrik Lissner 2019-10-26 23:42:16 -04:00
parent bf8cc9b007
commit 23d36d3c27
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -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)
;;