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