summaryrefslogtreecommitdiff
path: root/config/helm.el
diff options
context:
space:
mode:
Diffstat (limited to 'config/helm.el')
-rw-r--r--config/helm.el20
1 files changed, 11 insertions, 9 deletions
diff --git a/config/helm.el b/config/helm.el
index b3f87aa..fd4fbe0 100644
--- a/config/helm.el
+++ b/config/helm.el
@@ -1,16 +1,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
- (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)