diff --git a/init.el b/init.el index 53624697..288f5830 100644 --- a/init.el +++ b/init.el @@ -136,6 +136,8 @@ (org-todo 0)) (defun org-project-heading (heading) + (interactive + (list (read-string "Heading: "))) (org-insert-or-goto-heading heading) (hide-subtree) (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)) :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 :ensure t :commands (flycheck-mode)