summaryrefslogtreecommitdiff
path: root/config/helm.el
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-05-17 20:17:44 +0100
committerSam Light <samlight1994@gmail.com>2025-05-17 20:17:44 +0100
commit0b48b7d84872ea328ff942d2a2f786efc3319e82 (patch)
tree1d83b715d124d0a812df6669ac8e8ee4a27a5d26 /config/helm.el
Inital commit
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)