From 72c4fd33bf7fa8d97b7f921805915985e93e0232 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 11 Jan 2019 13:40:25 -0800 Subject: [PATCH] [Emacs] Attempt to fix helm --- dotfiles/emacs.d/README.org | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index d84b688a..b0891370 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -1767,6 +1767,7 @@ bind-key and global-set-key forms. I use helm for almost all emacs completion #+BEGIN_SRC emacs-lisp -n -r (use-package helm-config + :demand t :diminish helm-mode :straight helm :bind (("M-y" . helm-show-kill-ring) @@ -1809,8 +1810,12 @@ I use helm for almost all emacs completion (setq helm-ag--extra-options option)))) :config (progn - (setq helm-ag-always-set-extra-option nil))) - (run-with-idle-timer 1 nil 'helm-mode 1))) + (setq helm-ag-always-set-extra-option nil))))) + +(use-package helm + :diminish helm-mode + :config + (helm-mode +1)) #+END_SRC ** helm-projectile #+BEGIN_SRC emacs-lisp @@ -1912,7 +1917,8 @@ I use helm for almost all emacs completion ido-use-virtual-buffers t ido-use-filename-at-point nil ido-create-new-buffer 'always) - (ido-everywhere 1) + ;; This is incompatible with helm-mode + ;; (ido-everywhere 1) (setq ido-enable-flex-matching t) (use-package flx-ido :defer 5