summaryrefslogtreecommitdiff
path: root/config/helm.el
blob: b3f87aace5efdd4ac66a8be730bd1378681e2c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;; -*- lexical-binding: t; -*-
(use-package helm
  :ensure t
  :config
  (global-set-key (kbd "M-x") 'helm-M-x)
  (global-set-key (kbd "C-x C-m") 'helm-M-x)
  (global-set-key (kbd "M-y") 'helm-show-kill-ring)
  (global-set-key (kbd "C-x b") 'helm-mini)
  (global-set-key (kbd "C-x C-b") 'helm-buffers-list)
  (global-set-key (kbd "C-x C-f") 'helm-find-files)
  (global-set-key (kbd "C-h f") 'helm-apropos)
  (global-set-key (kbd "C-h r") 'helm-info-emacs)
  (global-set-key (kbd "C-h C-l") 'helm-locate-library)
  (helm-mode 1))

(use-package helm-ag :ensure t)