mirror of
https://github.com/emacscollective/emacs.g.git
synced 2025-07-05 16:37:39 -04:00
Assimilate ivy 0.9.1-138-gf9c5149
This commit is contained in:
parent
03b725fbc9
commit
3638e4cd74
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -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
19
init.el
@ -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
1
lib/ivy
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit f9c51498d00cba54eca779b3caa2b8ff4a9f6f7d
|
Loading…
x
Reference in New Issue
Block a user