forked from colonelpanic/dotfiles
ace-isearch
This commit is contained in:
parent
ef69a4ab6f
commit
f3e38228b8
9
init.el
9
init.el
@ -136,6 +136,8 @@
|
|||||||
(org-todo 0))
|
(org-todo 0))
|
||||||
|
|
||||||
(defun org-project-heading (heading)
|
(defun org-project-heading (heading)
|
||||||
|
(interactive
|
||||||
|
(list (read-string "Heading: ")))
|
||||||
(org-insert-or-goto-heading heading)
|
(org-insert-or-goto-heading heading)
|
||||||
(hide-subtree)
|
(hide-subtree)
|
||||||
(org-beginning-of-line)
|
(org-beginning-of-line)
|
||||||
@ -392,6 +394,13 @@ The current directory is assumed to be the project's root otherwise."
|
|||||||
(setq ace-jump-mode-scope 'window))
|
(setq ace-jump-mode-scope 'window))
|
||||||
:bind (("C-j" . ace-jump-mode)))
|
:bind (("C-j" . ace-jump-mode)))
|
||||||
|
|
||||||
|
(use-package ace-isearch
|
||||||
|
:ensure t
|
||||||
|
:config
|
||||||
|
(progn
|
||||||
|
(global-ace-isearch-mode +1)
|
||||||
|
(setq ace-isearch-input-idle-delay .25)))
|
||||||
|
|
||||||
(use-package flycheck
|
(use-package flycheck
|
||||||
:ensure t
|
:ensure t
|
||||||
:commands (flycheck-mode)
|
:commands (flycheck-mode)
|
||||||
|
Loading…
Reference in New Issue
Block a user