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