Skip to content

Commit

Permalink
Minor reorg to keyboard-related initializers
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Klishin committed Feb 15, 2013
1 parent 3667f5e commit fbd3942
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 126 deletions.
5 changes: 2 additions & 3 deletions boot.el
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -23,12 +23,11 @@


(load-initializer "elisp") (load-initializer "elisp")
(load-initializer "path") (load-initializer "path")
(load-initializer "keymap") (load-initializer "kbd")
(load-initializer "kdb_macros")
(load-initializer "yasnippet") (load-initializer "yasnippet")
(load-initializer "ui") (load-initializer "ui")
(load-initializer "ido") (load-initializer "ido")
(load-initializer "bundles") (load-initializer "bundles")
(load-initializer "scratches") (load-initializer "scratches")


(load "custom-variables") (load "custom-variables")
4 changes: 4 additions & 0 deletions initializers/elisp_initializer.el
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
;; Some bits are shameless attempts to make Emacs Lisp look a little bit more like ;; Some bits are shameless attempts to make Emacs Lisp look a little bit more like
;; Clojure. ;; Clojure.


(global-set-key (kbd "C-c v") 'eval-buffer)
(define-key emacs-lisp-mode-map (kbd "C-c C-c") 'comment-region)
(define-key emacs-lisp-mode-map (kbd "C-c C-u") 'uncomment-region)

;; ;;
;; Clojurify all the things ;; Clojurify all the things
;; ;;
Expand Down
8 changes: 0 additions & 8 deletions initializers/kdb_macros_initializer.el

This file was deleted.

115 changes: 0 additions & 115 deletions initializers/keymap_initializer.el

This file was deleted.

0 comments on commit fbd3942

Please sign in to comment.