From 7869360008d87ca4b459c703f4894625dd8181cc Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sun, 26 Jan 2014 01:59:44 -0500 Subject: Follow Purcell's emacs.d structure User init files are added using provide/require. https://github.com/purcell/emacs.d --- lisp/init-keymaps.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lisp/init-keymaps.el (limited to 'lisp/init-keymaps.el') diff --git a/lisp/init-keymaps.el b/lisp/init-keymaps.el new file mode 100644 index 0000000..eb1db41 --- /dev/null +++ b/lisp/init-keymaps.el @@ -0,0 +1,18 @@ +(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) -- cgit v1.2.3