chore: stylefix

This commit is contained in:
Laurens Miers 2025-05-27 11:52:05 +02:00
parent 3f93a19d4b
commit a79987f30f

View file

@ -488,7 +488,7 @@ C-c C-c to apply."
** Orderless
#+begin_src emacs-lisp
#+BEGIN_SRC emacs-lisp
(use-package orderless
:demand t
:custom
@ -508,11 +508,11 @@ C-c C-c to apply."
;; )
;; )
)
#+end_src
#+END_SRC
** Marginalia
#+begin_src emacs-lisp
#+BEGIN_SRC emacs-lisp
;; Enable rich annotations using the Marginalia package
(use-package marginalia
;; Bind `marginalia-cycle' locally in the minibuffer. To make the binding
@ -527,7 +527,7 @@ C-c C-c to apply."
;; the mode gets enabled right away. Note that this forces loading the
;; package.
(marginalia-mode))
#+end_src
#+END_SRC
* Dired
@ -565,7 +565,6 @@ Operate on the current line if no region is active.
#+begin_src emacs-lisp
(use-package whole-line-or-region
:config
(whole-line-or-region-global-mode 1)
)
@ -758,10 +757,10 @@ https://github.com/victorhge/iedit
** Dumb-jump
#+BEGIN_SRC emacs-lisp
(use-package dumb-jump
(use-package dumb-jump
:init
(add-hook 'xref-backend-functions #'dumb-jump-xref-activate)
)
)
#+END_SRC
** C-programming
@ -841,8 +840,8 @@ https://github.com/remyferre/comment-dwim-2
#+BEGIN_SRC emacs-lisp
(use-package comment-dwim-2
:config
(global-set-key (kbd "M-;") 'comment-dwim-2)
:bind
("M-;" . comment-dwim-2)
)
#+END_SRC