[Emacs] Attempt to fix helm

This commit is contained in:
Ivan Malison 2019-01-11 13:40:25 -08:00
parent 8687bc3518
commit 72c4fd33bf
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -1767,6 +1767,7 @@ bind-key and global-set-key forms.
I use helm for almost all emacs completion I use helm for almost all emacs completion
#+BEGIN_SRC emacs-lisp -n -r #+BEGIN_SRC emacs-lisp -n -r
(use-package helm-config (use-package helm-config
:demand t
:diminish helm-mode :diminish helm-mode
:straight helm :straight helm
:bind (("M-y" . helm-show-kill-ring) :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)))) (setq helm-ag--extra-options option))))
:config :config
(progn (progn
(setq helm-ag-always-set-extra-option nil))) (setq helm-ag-always-set-extra-option nil)))))
(run-with-idle-timer 1 nil 'helm-mode 1)))
(use-package helm
:diminish helm-mode
:config
(helm-mode +1))
#+END_SRC #+END_SRC
** helm-projectile ** helm-projectile
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
@ -1912,7 +1917,8 @@ I use helm for almost all emacs completion
ido-use-virtual-buffers t ido-use-virtual-buffers t
ido-use-filename-at-point nil ido-use-filename-at-point nil
ido-create-new-buffer 'always) ido-create-new-buffer 'always)
(ido-everywhere 1) ;; This is incompatible with helm-mode
;; (ido-everywhere 1)
(setq ido-enable-flex-matching t) (setq ido-enable-flex-matching t)
(use-package flx-ido (use-package flx-ido
:defer 5 :defer 5