chore: fix Vuepress version

This commit is contained in:
Lucien Cartier-Tilet 2023-10-14 18:02:51 +02:00
parent 4e7e98c28b
commit df301c72e1
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
3 changed files with 403 additions and 445 deletions

View File

@ -1438,9 +1438,9 @@ Magit and bug [[https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62093][62093]] of
display in the Magit buffer a list of TODOs found in the current
project to remind you of what to do next.
First, lets se tup our todo keywords with ~hl-todo~. A good few todo
keywords are already defined in the ~hl-todo-keyword-faces~ variable.
Why not use them? ~hl-todo-mode~ enables fontlock highlight of these
First, lets se tup our todo keywords with =hl-todo=. A good few todo
keywords are already defined in the =hl-todo-keyword-faces= variable.
Why not use them? =hl-todo-mode= enables fontlock highlight of these
keywords in a buffer. Lets enable this mode globally.
#+begin_src emacs-lisp
(use-package hl-todo
@ -1456,10 +1456,10 @@ keywords in a buffer. Lets enable this mode globally.
"p" #'hl-todo-previous))
#+end_src
We can now configure properly ~magit-todos~. Notice my custom function
hooked to ~magit-mode-hook~. This is because this package tries to find
We can now configure properly =magit-todos=. Notice my custom function
hooked to =magit-mode-hook=. This is because this package tries to find
TODOs in all files in the current project, and my yadm repositorys
root is my ~$HOME~. So, yeah, no ~magit-todos~ in yadm.
root is my =$HOME=. So, yeah, no =magit-todos= in yadm.
#+begin_src emacs-lisp
(use-package magit-todos
:straight (:build t)
@ -1478,17 +1478,16 @@ deactivate `magit-todos-mode', otherwise enable it."
(csetq magit-todos-ignore-case t))
#+end_src
Finally, it is also possible to use Gitflows framework with Magit
with ~magit-gitflow~:
Finally, =git-cliff= generates changelogs within Magit itself using [[https://github.com/orhun/git-cliff][=git-cliff=]].
#+begin_src emacs-lisp
(use-package magit-gitflow
:defer t
:after magit
:straight (magit-gitflow :build t
:type git
:host github
:repo "jtatarik/magit-gitflow")
:hook (magit-mode . turn-on-magit-gitflow))
(use-package git-cliff
:straight (:build t :type git :host github :repo "liuyinz/git-cliff.el")
:after (magit)
:config
(with-eval-after-load 'magit-tag
(transient-append-suffix 'magit-tag
'(1 0 -1)
'("c" "changelog" git-cliff-menu))))
#+end_src
*** Forge

View File

@ -14,8 +14,7 @@
"author": "Lucien Cartier-Tilet <lucien@phundrak.com>",
"license": "AGPL-3.0",
"devDependencies": {
"vuepress": "2.0.0-beta.67",
"vuepress-vite": "^2.0.0-beta.67"
"vuepress": "2.0.0-beta.63"
},
"dependencies": {
"vuepress-plugin-remove-html-extension": "^0.1.0"

814
yarn.lock

File diff suppressed because it is too large Load Diff