[Emacs] Enable magit-todos by default, except for yadm
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Lucien Cartier-Tilet 2022-07-06 21:05:10 +02:00
parent 2afef395a1
commit efe4db37a3
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 21 additions and 4 deletions

View File

@ -2698,13 +2698,26 @@ keywords in a buffer. Lets enable this mode globally.
"p" #'hl-todo-previous))
#+end_src
We can now configure properly ~magit-todos~.
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.
#+begin_src emacs-lisp
(use-package magit-todos
:straight (:build t)
:after (magit hl-todo)
:init
(with-eval-after-load 'magit
(defun my/magit-todos-if-not-yadm ()
"Deactivate magit-todos if in yadm Tramp connection.
If `magit--default-directory' points to a yadm Tramp directory,
deactivate `magit-todos-mode', otherwise enable it."
(if (string-prefix-p "/yadm:" magit--default-directory)
(magit-todos-mode -1)
(magit-todos-mode +1)))
(add-hook 'magit-mode-hook #'my/magit-todos-if-not-yadm))
:config
(setq magit-todos-ignore-case t))
(csetq magit-todos-ignore-case t))
#+end_src
Finally, it is also possible to use Gitflows framework with Magit
@ -7420,11 +7433,15 @@ receives some commits!
#+end_src
Which Emacser prefers the command line over Emacs itself? I dont.
Lets interact with NPM through Emacs then.
Lets interact with NPM through Emacs then. For the record, Im using
my own fork of npm-mode which fixes the issue of the npm buffer being
unreadable.
#+begin_src emacs-lisp
(use-package npm-mode
:defer t
:straight (:build t)
:straight (npm-mode :build t
:type git
:fork t)
:hook (js-mode . npm-mode)
:hook (web-mode . npm-mode)
:general