Assimilate ivy 0.9.1-138-gf9c5149

This commit is contained in:
Jonas Bernoulli 2017-08-05 11:36:09 +02:00
parent 03b725fbc9
commit 3638e4cd74
3 changed files with 21 additions and 3 deletions

4
.gitmodules vendored
View File

@ -30,6 +30,10 @@
[submodule "git-modes"]
path = lib/git-modes
url = git@github.com:magit/git-modes.git
[submodule "ivy"]
path = lib/ivy
url = git@github.com:abo-abo/swiper.git
info-path = doc
[submodule "magit"]
path = lib/magit
url = git@github.com:magit/magit.git

19
init.el
View File

@ -56,6 +56,22 @@
(use-package server
:config (or (server-running-p) (server-mode)))
(use-package counsel
:demand t
:bind (("M-x" . counsel-M-x)
("C-x C-f" . counsel-find-file)
("C-x C-l" . counsel-find-library))
:config (counsel-mode))
(use-package ivy
:demand t
:bind (("C-c C-r" . ivy-resume))
:config (ivy-mode))
(use-package swiper
:defer t
:bind (("C-s" . swiper)))
(progn ; startup
(message "Loading early birds...done (%.3fs)"
(float-time (time-subtract (current-time)
@ -83,9 +99,6 @@
:defer t
:config (temp-buffer-resize-mode))
(progn ; `isearch'
(setq isearch-allow-scroll t))
(use-package lisp-mode
:config
(add-hook 'emacs-lisp-mode-hook 'outline-minor-mode)

1
lib/ivy Submodule

@ -0,0 +1 @@
Subproject commit f9c51498d00cba54eca779b3caa2b8ff4a9f6f7d