diff options
author | Adrian Kummerlaender | 2020-06-16 13:38:15 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-06-16 13:38:15 +0200 |
commit | 8473788abb3c6fcb2935bd316b4200e253b2e80a (patch) | |
tree | 6529f36fcce3178aac20083ca056db321384f0c4 /gui | |
parent | 3987368d94bbc4b29ecc35b00f34cc049fa8b7d7 (diff) | |
download | nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.tar nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.tar.gz nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.tar.bz2 nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.tar.lz nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.tar.xz nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.tar.zst nixos_home-8473788abb3c6fcb2935bd316b4200e253b2e80a.zip |
Add minor mode display to modeline
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/init.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 3aeba4f..dbf8056 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -50,12 +50,18 @@ (load-library "custom-runtime-env") (load-library "akr-theme") +(use-package minions + :ensure t + :config + (minions-mode 1)) + (use-package doom-modeline :ensure t :init (doom-modeline-mode 1) :config - (setq doom-modeline-vcs-max-length 24)) + (setq doom-modeline-vcs-max-length 24) + (setq doom-modeline-minor-modes t)) (use-package evil :ensure t |