Browse Source

added helm, but without keybinds.

master
Marc Pohling 6 years ago
parent
commit
3541593f53
1 changed files with 20 additions and 19 deletions
  1. 39
      config.org

39
config.org

@ -617,31 +617,30 @@ Ivy-Hydra adds stuff in minibuffer when you press C-o
* Helm
I placed it after ivy to override any configuration made by the former.
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
:ensure t
:init
(helm-mode 1)
; :bind
:bind
; (("M-x" . helm-M-x)
; ("C-x C-f" . helm-find-files)
; ("C-x C-r" . helm-recentf)
; ("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
* Latex
Requirements for Linux:
@ -1331,13 +1330,15 @@ _v_ verify setup _f_ check _s_ select
(evil-mode 1)) ;; for now deactivate per default
#+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
(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
* Window Handling

Loading…
Cancel
Save