summary refs log tree commit diff
path: root/emacs.d/inits/20_helm.el
blob: 91861058a9c4b629f08afb750d2d779b5b25c38e (plain) (blame)
1
2
3
4
5
6
7
8
9
(use-package helm
  :ensure t
  :bind (("C-x C-f" . helm-find-files)
         ("M-x" . helm-M-x))
  :config
  (helm-mode))

(use-package helm-ag
  :ensure t)