diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-03-12 17:31:36 -0700 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-03-12 17:31:36 -0700 |
commit | e70b05d56ccff729e70bc6acabe4d66b4dbe8dad (patch) | |
tree | a91faa861d61b2cc928f036d73caadc76a586c82 /emacs | |
parent | [emacs] hl-line mode configuration (diff) | |
download | emacs.d-e70b05d56ccff729e70bc6acabe4d66b4dbe8dad.tar.gz |
[emacs] add key bindings to change font size
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-ui.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el index a194d1e..e2fd001 100644 --- a/emacs.d/custom/fcuny-ui.el +++ b/emacs.d/custom/fcuny-ui.el @@ -15,7 +15,9 @@ (tool-bar-mode -1)) (use-package frame - :bind (("C-c C-m" . toggle-frame-fullscreen)) + :bind (("C-c C-m" . toggle-frame-fullscreen) + ("C-c C-=" . text-scale-increase) + ("C-c C--" . text-scale-decrease)) :config (blink-cursor-mode -1) (setq frame-title-format "%b") |