about summary refs log tree commit diff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorVincent Ambo <vincent@spotify.com>2013-07-08T14·54+0200
committerVincent Ambo <vincent@spotify.com>2013-07-08T14·54+0200
commit74d252df97ccee6b407aa79d0d763090346b3b14 (patch)
tree267ec84d6a0eb88bb5f20e0050396a34f9d0fe06 /emacs.d/init.el
parent4454fca696b12d19157a0ab6770c3348c0b9f119 (diff)
Emacs: Added init-bindings.el, removed starter-kit-bindings
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el7
1 files changed, 2 insertions, 5 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index e27a15f84e..866f18f728 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -14,8 +14,7 @@
   (package-refresh-contents))
 
 ;; Important packages
-(defvar my-pkgs '(starter-kit-bindings
-                  haskell-mode
+(defvar my-pkgs '(haskell-mode
                   markdown-mode
                   magit
                   leuven-theme
@@ -35,6 +34,7 @@
 (load "~/.emacs.d/init-functions.el")
 (load "~/.emacs.d/init-settings.el")
 (load "~/.emacs.d/init-modes.el")
+(load "~/.emacs.d/init-bindings.el")
 
 (setq custom-file "~/.emacs.d/init-custom.el")
 (load custom-file)
@@ -50,8 +50,5 @@
 ;; Seed RNG
 (random t)
 
-;; Add a fullscreen toggle
-(global-set-key (kbd "M-RET") 'toggle-frame-fullscreen)
-
 ;; Start server for emacsclient
 (server-start)