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-keybindings.el | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 lisp/init-keybindings.el (limited to 'lisp/init-keybindings.el') diff --git a/lisp/init-keybindings.el b/lisp/init-keybindings.el new file mode 100644 index 0000000..70ad6b3 --- /dev/null +++ b/lisp/init-keybindings.el @@ -0,0 +1,30 @@ +;; Keybindings that don't go with other topics + +(global-set-key (kbd "C-x \\") 'align-regexp) +(global-set-key (kbd "C-x K") 'kill-buffer-and-window) + +;; Overrides `suspend-emacs' (which is also bound to C-x C-z). +(global-set-key (kbd "C-z") 'zap-to-char) +(global-unset-key (kbd "M-z")) + +(global-set-key (kbd "C-'") 'backward-kill-word) + +(define-key replace-map "s" 'query-replace) +(define-key replace-map "S" 'replace-string) +(define-key replace-map "r" 'query-replace-regexp) +(define-key replace-map "R" 'replace-regexp) + +(define-key insert-map "t" 'km/todo-comment) + +(define-key insert-map "i" 'indent-relative) + +(define-key multiple-cursors-map "l" 'mc/edit-lines) +(define-key multiple-cursors-map "n" 'mc/mark-next-like-this) +(define-key multiple-cursors-map "p" 'mc/mark-previous-like-this) +(define-key multiple-cursors-map "a" 'mc/mark-all-like-this) + +(global-set-key (kbd "C-;") 'er/expand-region) + +(define-key external-map "s" 'shell-command) + +(provide 'init-keybindings) -- cgit v1.2.3