summaryrefslogtreecommitdiff
path: root/init/20-keymaps.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-01-26 01:59:44 -0500
committerKyle Meyer <kyle@kyleam.com>2014-01-26 01:59:44 -0500
commit7869360008d87ca4b459c703f4894625dd8181cc (patch)
treeb0f3f50ae2c309056883e03848abb3e1e4cb9b1e /init/20-keymaps.el
parent47e1d90700105f6b0f0550d7632a22b3fe81acb9 (diff)
downloademacs.d-7869360008d87ca4b459c703f4894625dd8181cc.tar.gz
Follow Purcell's emacs.d structure
User init files are added using provide/require. https://github.com/purcell/emacs.d
Diffstat (limited to 'init/20-keymaps.el')
-rw-r--r--init/20-keymaps.el16
1 files changed, 0 insertions, 16 deletions
diff --git a/init/20-keymaps.el b/init/20-keymaps.el
deleted file mode 100644
index 4cc8223..0000000
--- a/init/20-keymaps.el
+++ /dev/null
@@ -1,16 +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)