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