Add TODO list inside code.

You can view the complete list using consult (consult-todo)
and on magit. Also the keywords like TODO or FIXME was
highlighted on code comments.
This commit is contained in:
KJ 2024-04-03 19:19:21 -04:00
parent 886284c70d
commit 8a31842c17
2 changed files with 21 additions and 0 deletions

View File

@ -145,5 +145,11 @@
:after nerd-icons
:config (nerd-icons-completion-mode))
;; Todolist de todo el projecto desde consult.
(use-package consult-todo
:demand t
:bind ("C-c t" . consult-todo)
:defer t)
(provide 'init-minibuffer)
;;; init-minibuffer.el ends here

View File

@ -160,6 +160,11 @@
)
)
;; Resaltar palabras clave como TODO, FIXME, etc. en comentarios del código.
(use-package hl-todo
:defer t
:hook (prog-mode . hl-todo-mode))
;; Mostrar lo que se está presionando en pantalla
(use-package keypression
:defer t
@ -183,10 +188,20 @@
(use-package magit
:defer t)
;; Todolist en magit de todos los archivos del projecto.
(use-package magit-todos
:defer t
:after magit
:config (magit-todos-mode 1))
;; Modo markdown
(use-package markdown-mode
:defer t)
;; Multiples cursores en emacs
(use-package multiple-cursors
:defer t)
;; Multiple vterm
(use-package multi-vterm
:defer t