diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2023-09-26 16:03:40 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2023-09-26 16:03:40 +0200 |
| commit | feb1f3df32a99a5c37a1853541734ab2a62bc263 (patch) | |
| tree | 548f554c3108218f413d927e960c5c4997f3c134 /dot.emacs.d/init.el | |
| parent | b4e1a281e5033ed174eb27fbd36349555a2e12f3 (diff) | |
Emacs: Update config to new format; load immediately
Diffstat (limited to 'dot.emacs.d/init.el')
| -rw-r--r-- | dot.emacs.d/init.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index e97165c..45ac7a5 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -124,17 +124,16 @@ ("C-:" . avy-goto-char-2) ("C-," . avy-goto-line))) -(use-package helm-config - :ensure nil - :bind-keymap ("C-c h" . helm-command-prefix) - :bind (:map helm-command-map - ("o" . #'helm-occur))) (use-package helm + :defer nil + :bind-keymap ("C-c h" . helm-command-map) :bind (("M-x" . #'helm-M-x) ("M-y" . #'helm-show-kill-ring) ("C-x b" . #'helm-mini) ("C-x C-f" . #'helm-find-files) - ("C-h SPC" . #'helm-all-mark-rings)) + ("C-h SPC" . #'helm-all-mark-rings) + :map helm-command-map + ("o" . #'helm-occur)) :config (helm-mode 1) (helm-autoresize-mode t) |
