From ff286d9972416713d3f920486fbe722a89d4033a Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sun, 9 Feb 2025 14:58:42 +0100 Subject: [PATCH] Add which-key and change theme --- README.org | 10 +++++++++- init.el | 7 ++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index a19b643..a53e6a6 100644 --- a/README.org +++ b/README.org @@ -45,7 +45,7 @@ #+end_src ** Theme #+begin_src elisp - (load-theme 'tango-dark) + (load-theme 'wombat) #+end_src ** Modeline *** Doom modeline @@ -77,3 +77,11 @@ :config (setq ivy-initial-inputs-alist nil)) ;; Don't start searches with ^ #+end_src +* Helpers +** which-key +#+begin_src elisp + (use-package which-key + :init (which-key-mode) + :config + (setq which-key-idle-delay 0.3)) +#+end_src diff --git a/init.el b/init.el index 85c56c5..1ee3957 100644 --- a/init.el +++ b/init.el @@ -27,7 +27,7 @@ (set-fringe-mode 10) -(load-theme 'tango-dark) +(load-theme 'wombat) (use-package doom-modeline :ensure t @@ -48,3 +48,8 @@ ("C-x C-f" . counsel-find-file)) :config (setq ivy-initial-inputs-alist nil)) ;; Don't start searches with ^ + +(use-package which-key + :init (which-key-mode) + :config + (setq which-key-idle-delay 0.3)) -- 2.47.2