|
@ -617,31 +617,30 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o |
|
|
* Helm |
|
|
* Helm |
|
|
I placed it after ivy to override any configuration made by the former. |
|
|
I placed it after ivy to override any configuration made by the former. |
|
|
This is just a try to see how it works differently. |
|
|
This is just a try to see how it works differently. |
|
|
2018-04-29: invalid-function "helm-with-buffer" occurred whenever I tried to start a helm function, so.. back to ivy! |
|
|
|
|
|
|
|
|
|
|
|
+BEGIN_SRC emacs-lisp |
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
(use-package helm |
|
|
(use-package helm |
|
|
:ensure t |
|
|
:ensure t |
|
|
:init |
|
|
:init |
|
|
(helm-mode 1) |
|
|
(helm-mode 1) |
|
|
; :bind |
|
|
|
|
|
|
|
|
:bind |
|
|
; (("M-x" . helm-M-x) |
|
|
; (("M-x" . helm-M-x) |
|
|
; ("C-x C-f" . helm-find-files) |
|
|
; ("C-x C-f" . helm-find-files) |
|
|
; ("C-x C-r" . helm-recentf) |
|
|
; ("C-x C-r" . helm-recentf) |
|
|
; ("C-x b" . helm-buffers-list)) |
|
|
; ("C-x b" . helm-buffers-list)) |
|
|
; :config |
|
|
|
|
|
; (setq helm-buffers-fuzzy-matching t) |
|
|
|
|
|
|
|
|
:config |
|
|
|
|
|
(setq helm-buffers-fuzzy-matching t) |
|
|
) |
|
|
) |
|
|
|
|
|
|
|
|
;(use-package helm-descbinds |
|
|
|
|
|
; :ensure t |
|
|
|
|
|
; :bind |
|
|
|
|
|
; ("C-h b" . helm-descbinds)) |
|
|
|
|
|
|
|
|
(use-package helm-descbinds |
|
|
|
|
|
:ensure t |
|
|
|
|
|
:bind |
|
|
|
|
|
("C-h b" . helm-descbinds)) |
|
|
|
|
|
|
|
|
;(use-package helm-projectile |
|
|
|
|
|
; :ensure t |
|
|
|
|
|
; :config |
|
|
|
|
|
; (helm-projectile-on)) |
|
|
|
|
|
|
|
|
(use-package helm-projectile |
|
|
|
|
|
:ensure t |
|
|
|
|
|
:config |
|
|
|
|
|
(helm-projectile-on)) |
|
|
#+END_SRC |
|
|
#+END_SRC |
|
|
* Latex |
|
|
* Latex |
|
|
Requirements for Linux: |
|
|
Requirements for Linux: |
|
@ -1331,13 +1330,15 @@ _v_ verify setup _f_ check _s_ select |
|
|
(evil-mode 1)) ;; for now deactivate per default |
|
|
(evil-mode 1)) ;; for now deactivate per default |
|
|
#+END_SRC |
|
|
#+END_SRC |
|
|
|
|
|
|
|
|
Evil-collection is a bundle of configs for different modes |
|
|
|
|
|
|
|
|
Evil-collection is a bundle of configs for different modes. |
|
|
|
|
|
2018-05-01: evil collection causes error |
|
|
|
|
|
"Invalid function: with-helm-buffer" |
|
|
#+BEGIN_SRC emacs-lisp |
|
|
#+BEGIN_SRC emacs-lisp |
|
|
(use-package evil-collection |
|
|
|
|
|
:after evil |
|
|
|
|
|
:ensure t |
|
|
|
|
|
:config |
|
|
|
|
|
(evil-collection-init)) |
|
|
|
|
|
|
|
|
;(use-package evil-collection |
|
|
|
|
|
; :after evil |
|
|
|
|
|
; :ensure t |
|
|
|
|
|
; :config |
|
|
|
|
|
; (evil-collection-init)) |
|
|
#+END_SRC |
|
|
#+END_SRC |
|
|
|
|
|
|
|
|
* Window Handling |
|
|
* Window Handling |
|
|