summaryrefslogtreecommitdiff
path: root/lisp/init-keymaps.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-01-26 02:00:22 -0500
committerKyle Meyer <kyle@kyleam.com>2014-01-26 02:00:22 -0500
commit4bcfb672357b5840249c72b28cb860001c4e3967 (patch)
tree13e236eaccfdf6985e576f3b07bdec937f2f7955 /lisp/init-keymaps.el
parent7869360008d87ca4b459c703f4894625dd8181cc (diff)
downloademacs.d-4bcfb672357b5840249c72b28cb860001c4e3967.tar.gz
Reorganize and use require-package
`require-package' is from https://github.com/purcell/emacs.d/blob/master/lisp/init-elpa.el.
Diffstat (limited to 'lisp/init-keymaps.el')
-rw-r--r--lisp/init-keymaps.el18
1 files changed, 0 insertions, 18 deletions
diff --git a/lisp/init-keymaps.el b/lisp/init-keymaps.el
deleted file mode 100644
index eb1db41..0000000
--- a/lisp/init-keymaps.el
+++ /dev/null
@@ -1,18 +0,0 @@
-(define-prefix-command 'replace-map)
-(global-set-key (kbd "C-c r") 'replace-map)
-
-(define-prefix-command 'kill-map)
-(global-set-key (kbd "C-c k") 'kill-map)
-
-(define-prefix-command 'insert-map)
-(global-set-key (kbd "C-c i") 'insert-map)
-
-;; multiple cursors
-;; Put under insert prefix.
-(define-prefix-command 'multiple-cursors-map)
-(define-key insert-map "m" 'multiple-cursors-map)
-
-(define-prefix-command 'external-map)
-(global-set-key (kbd "C-c x") 'external-map)
-
-(provide 'init-keymaps)