diff options
author | Alan Pearce | 2014-11-11 09:55:00 +0000 |
---|---|---|
committer | Alan Pearce | 2014-11-11 09:55:00 +0000 |
commit | 4c079513c4cd3aef6b28514125a57e03f7fccbf5 (patch) | |
tree | 3a8f59f3d7747fb5e4ce880105e178b3d1f756ed /tag-emacs/emacs.d | |
parent | 4d2d0a9511159eca3a3c8945d13fe36821c5e7e6 (diff) | |
download | nixfiles-4c079513c4cd3aef6b28514125a57e03f7fccbf5.tar.lz nixfiles-4c079513c4cd3aef6b28514125a57e03f7fccbf5.tar.zst nixfiles-4c079513c4cd3aef6b28514125a57e03f7fccbf5.zip |
Emacs: Try boon mode
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/Cask | 1 | ||||
-rw-r--r-- | tag-emacs/emacs.d/init.el | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index 4809547d..633f4535 100644 --- a/tag-emacs/emacs.d/Cask +++ b/tag-emacs/emacs.d/Cask @@ -9,6 +9,7 @@ (depends-on "auto-compile") (depends-on "auto-indent-mode") (depends-on "bind-key") +(depends-on "boon") (depends-on "cask") (depends-on "cider") (depends-on "clj-refactor") diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 3187d090..01f8fb6a 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -503,6 +503,15 @@ ;;;; Keybindings +(req-package boon-colemak + :ensure boon + :config (progn + (boon-mode) + (bind-key "f" #'find-file boon-x-map))) + +(req-package boon-extras + :ensure boon) + (when (eq system-type 'darwin) (set-keyboard-coding-system nil) (setq mac-option-modifier 'meta |