diff options
author | Sam Light <samlight1994@gmail.com> | 2025-05-18 13:01:05 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-05-18 13:01:05 +0100 |
commit | 664742a1f235379587962279b9fa0dceb7c88728 (patch) | |
tree | 8845da71134771ee4e0cf8ca8e77e46d8ea60497 /config/helm.el | |
parent | 0966d7d56748833aa9306cc87ebea520019f6249 (diff) |
Moved all binding to use-package bind
Diffstat (limited to 'config/helm.el')
-rw-r--r-- | config/helm.el | 20 |
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) |