Update .emacs.d/README.org
This commit is contained in:
parent
949e90f784
commit
64c154c6f6
1 changed files with 13 additions and 7 deletions
|
@ -181,16 +181,22 @@ I use catppuccin as my theme, as I find it comfortable to work with (the Frappe
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Modeline
|
** Modeline
|
||||||
I use doom-modeline as my modeline, as I find it really clean and minimal.
|
minions allows to collapse all minor modes in a menu.
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package doom-modeline
|
(use-package minions
|
||||||
:ensure t
|
:config
|
||||||
:init (doom-modeline-mode 1)
|
(minions-mode))
|
||||||
:config
|
|
||||||
(setq doom-modeline-height 30))
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package moody
|
||||||
|
:config
|
||||||
|
(moody-replace-mode-line-front-space)
|
||||||
|
(moody-replace-mode-line-buffer-identification)
|
||||||
|
(moody-replace-vc-mode))
|
||||||
|
#+end_src
|
||||||
** Completion
|
** Completion
|
||||||
I use vertico as my completion framework. It's minimal, fast and tells me all I need to know and even sorts by history.
|
I use vertico as my completion framework. It's minimal, fast and tells me all I need to know and even sorts by history.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue