Update .emacs.d/config.org

This commit is contained in:
Anthony Rodriguez 2024-07-04 14:14:49 +02:00
parent 20a1e43944
commit ea37396175

View file

@ -97,7 +97,7 @@ Besides the font settings, I use the package fixed-pitch, which sets up hooks au
:vc ( :fetcher github :repo cstby/fixed-pitch-mode)) :vc ( :fetcher github :repo cstby/fixed-pitch-mode))
#+end_src #+end_src
** Ligatures *** Ligatures
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package ligature (use-package ligature
:config :config
@ -119,7 +119,7 @@ Besides the font settings, I use the package fixed-pitch, which sets up hooks au
#+end_src #+end_src
** Visual mode ** Visual mode
We turn on visual mode, so that lines can wrap nicely and do go beyond my Emacs buffer size. We turn on visual mode, so that lines can wrap nicely and not go beyond my Emacs buffer size.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(global-visual-line-mode t) (global-visual-line-mode t)
#+end_src #+end_src