Update .emacs.d/README.org

This commit is contained in:
Anthony Rodriguez 2024-07-09 00:01:10 +02:00
parent 16c74e31c9
commit f654a824f1

View file

@ -9,12 +9,12 @@
- [[#general-config][General config]] - [[#general-config][General config]]
- [[#move-temporary-files-to-tmpusername][Move temporary files to /tmp/{username}]] - [[#move-temporary-files-to-tmpusername][Move temporary files to /tmp/{username}]]
- [[#minimal-interface][Minimal interface]] - [[#minimal-interface][Minimal interface]]
- [[#mode-line][Mode line]]
- [[#match-fish-shells-path][Match fish shell's path]] - [[#match-fish-shells-path][Match fish shell's path]]
- [[#bell][Bell]] - [[#bell][Bell]]
- [[#font][Font]] - [[#font][Font]]
- [[#visual-mode][Visual mode]] - [[#visual-mode][Visual mode]]
- [[#theme][Theme]] - [[#theme][Theme]]
- [[#modeline][Modeline]]
- [[#completion][Completion]] - [[#completion][Completion]]
- [[#which-key][which-key]] - [[#which-key][which-key]]
- [[#org-mode][Org mode]] - [[#org-mode][Org mode]]
@ -93,6 +93,16 @@ We disable a lot of interface elements, to make the editor more minimal looking.
(menu-bar-mode -1) (menu-bar-mode -1)
#+end_src #+end_src
** Mode line
#+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
** Match fish shell's path ** Match fish shell's path
#+begin_src emacs-lisp #+begin_src emacs-lisp
(defun set-exec-path-from-shell-PATH () (defun set-exec-path-from-shell-PATH ()
@ -180,23 +190,6 @@ I use catppuccin as my theme, as I find it comfortable to work with (the Frappe
(load-theme 'catppuccin :no-confirm)) (load-theme 'catppuccin :no-confirm))
#+end_src #+end_src
** Modeline
minions allows to collapse all minor modes in a menu.
#+begin_src emacs-lisp
(use-package minions
:config
(minions-mode))
#+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.