summary refs log tree commit diff
path: root/emacs.d/lib/bindings.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2017-04-27 09:51:29 -0700
committerFranck Cuny <franck.cuny@gmail.com>2017-04-27 09:51:29 -0700
commita862e0bbdecc9c3a5eae8ab60181eeaff5ab1699 (patch)
treeda8c484f28d85c1265900f706815c705c5c341ca /emacs.d/lib/bindings.el
parent[Emacs] fix a comment (diff)
downloademacs.d-a862e0bbdecc9c3a5eae8ab60181eeaff5ab1699.tar.gz
[Emacs] Move packages configuration to a new file.
Keep `init.el` as small as possible, and move all the packages to
their own configuration file.
Diffstat (limited to 'emacs.d/lib/bindings.el')
-rw-r--r--emacs.d/lib/bindings.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/lib/bindings.el b/emacs.d/lib/bindings.el
index 2320fb5..ec97ecc 100644
--- a/emacs.d/lib/bindings.el
+++ b/emacs.d/lib/bindings.el
@@ -5,4 +5,8 @@
 (define-key emacs-lisp-mode-map (kbd "C-c C-e") 'eval-buffer)
 (define-key emacs-lisp-mode-map (kbd "C-c C-r") 'eval-region)
 
+(global-set-key (kbd "s-=") 'fc/scale-up-font)
+(global-set-key (kbd "s--") 'fc/scale-down-font)
+(global-set-key (kbd "s-0") 'fc/reset-font-size)
+
 (provide 'bindings)