summary refs log tree commit diff
path: root/emacs.d/lib/bindings.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-04-08 16:13:12 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-04-08 16:13:12 -0700
commit4007ca81e0105119c8ed754e654a731934f5154c (patch)
tree41ba9d60f64866c8a098e631e8e32bf4249931fa /emacs.d/lib/bindings.el
parent[emacs] fix some path after directories reorg (diff)
downloademacs.d-4007ca81e0105119c8ed754e654a731934f5154c.tar.gz
[emacs] Large refactoring.
At first I wanted to add support for java, and then I realized that
maintaining a giant file with all the packages was not working as I
was expected.

The configuration is broken down to multiple files now, with each
major mode in a separate file, and the main modules in their own too.

This should make it easier to maintain and organize.
Diffstat (limited to '')
-rw-r--r--emacs.d/lib/bindings.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/emacs.d/lib/bindings.el b/emacs.d/lib/bindings.el
deleted file mode 100644
index ec97ecc..0000000
--- a/emacs.d/lib/bindings.el
+++ /dev/null
@@ -1,12 +0,0 @@
-;; some bindings
-(global-set-key (kbd "M-j") 'join-line)
-(global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen)
-
-(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)