59511f938705ce64bca96900fdae85589e758529
[dotfiles.git] / emacs.d / elisp / init-helm.el
1
2
3 ;; helm
4 (use-package helm
5   :ensure t
6   :init
7   (setq helm-M-x-fuzzy-match t)
8   (setq helm-buffer-fuzzy-matching t)
9   (setq helm-recentf-fuzzy-match t)
10   (setq helm-cadidate-number-limit 20)
11   (setq helm-display-function
12       (lambda (buf)
13         (split-window-vertically)
14         (other-window 1)
15         (switch-to-buffer buf)))
16   :config
17   (helm-mode 1)
18   (helm-autoresize-mode 1)
19   :bind (("M-x" . helm-M-x)
20          ("s-j" . helm-mini)))
21
22
23
24 (provide 'init-helm)