summaryrefslogtreecommitdiff
path: root/config/helm.el
blob: fd4fbe0829c1965e5bef8398fc33259041d0e546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;; -*- lexical-binding: t; -*-

(use-package helm
  :ensure t
  :bind
  (("M-x" . helm-M-x)
   ("C-x C-m" . helm-M-x)
   ("M-y" . helm-show-kill-ring)
   ("C-x b" . helm-mini)
   ("C-x C-b" . helm-buffers-list)
   ("C-x C-f" . helm-find-files)
   ("C-h f" . helm-apropos)
   ("C-h r" . helm-info-emacs)
   ("C-h C-l" . helm-locate-library))
  :config
  (helm-mode 1))

(use-package helm-ag :ensure t)