diff options
author | noa | 2025-02-16 16:11:53 +0800 |
---|---|---|
committer | noa | 2025-02-16 16:11:53 +0800 |
commit | 2ad50dd41e1fd7210d8c43d2f53663999de43bbb (patch) | |
tree | 8897943883e16f4630d95ddc86b6925fd3a773ea | |
parent | a7e56f59f40bbd2690d79dae41e90927486b7828 (diff) |
Enable minibuffer depth indication after-init
-rw-r--r-- | emacs/init.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index 785c2d4..901bf6f 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -24,8 +24,7 @@ ;; It is often useful to be able to run a command while i am already in the process of running a command in the minibuffer. This is rarely two extended commands; usually it is completion. (use-package mb-depth - :custom - (minibuffer-depth-indicate-mode t)) + :hook (after-init . minibuffer-depth-indicate-mode)) ;; This is my emacs theme. It's a monochrome theme which, unlike most monochrome themes, really does have only two colours. I define a few faces, and set every other face as one of them. There are a few things i want to do with it before i make it properly public: make the colours configurable and able to update on the fly, and in general iron out some of the janky parts. A few things defined it are quite specific to this configuration, like the way i define the borders for the tab and header bars, and there is no mode line configuration because i don't use it. (use-package tubthumping-theme |