diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2015-03-17 04:11:37 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2015-03-17 04:11:37 (GMT) |
| commit | b94602dccfa28b997b1fc1f2e0373d997f4b95ce (patch) | |
| tree | 3be06093fa7911b9efad75084bfb4ef10411d68f /ravi-init-navigation.el | |
| parent | b15d1c09836007f29158905f99316b25bb1bf9f5 (diff) | |
| download | dotemacs-b94602dccfa28b997b1fc1f2e0373d997f4b95ce.zip dotemacs-b94602dccfa28b997b1fc1f2e0373d997f4b95ce.tar.gz dotemacs-b94602dccfa28b997b1fc1f2e0373d997f4b95ce.tar.bz2 | |
Upgrade to use-package 2.0
Fix changed semantics for init and for load-path
Diffstat (limited to 'ravi-init-navigation.el')
| -rw-r--r-- | ravi-init-navigation.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ravi-init-navigation.el b/ravi-init-navigation.el index 9a7da61..5a6054d 100644 --- a/ravi-init-navigation.el +++ b/ravi-init-navigation.el @@ -70,7 +70,6 @@ :config (progn (bind-key "C-=" 'er/expand-region)) - :idle (require 'expand-region) :ensure t ) @@ -80,7 +79,7 @@ ("C->" . mc/mark-next-like-this) ("C-<" . mc/mark-previous-like-this) ("C-c C-<" . mc/mark-all-like-this)) - :init + :config (progn (setq mc/list-file (ravi/emacs-file "past/mc-lists.el")) (bind-key "a" 'mc/mark-all-like-this region-bindings-mode-map) @@ -93,7 +92,7 @@ (use-package fold-this :commands fold-this - :init + :config (progn (bind-key "t" 'fold-this region-bindings-mode-map)) :ensure t @@ -101,7 +100,7 @@ (use-package indirect :commands indirect-region - :init + :config (progn (bind-key "I" 'indirect-region region-bindings-mode-map)) ) |
