#+end_src
** Theme
#+begin_src elisp
- (load-theme 'tango-dark)
+ (load-theme 'wombat)
#+end_src
** Modeline
*** Doom modeline
: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
(set-fringe-mode 10)
-(load-theme 'tango-dark)
+(load-theme 'wombat)
(use-package doom-modeline
:ensure t
("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))