Compare commits

..

2 Commits

Author SHA1 Message Date
05127bceae Add Magit commit -S option 2026-03-06 19:00:46 +00:00
396beb4262 Add forth config 2026-03-06 19:00:16 +00:00

View File

@@ -1049,6 +1049,11 @@
(add-hook 'before-save-hook 'gofmt-before-save))) (add-hook 'before-save-hook 'gofmt-before-save)))
#+end_src #+end_src
** Forth
#+begin_src emacs-lisp
(use-package forth-mode)
#+end_src
* Tool Integrations * Tool Integrations
** Git ** Git
=magit= is truly a wonderful creation! Add keybinding for =magit= is truly a wonderful creation! Add keybinding for
@@ -1089,6 +1094,16 @@
leave it at that for now as I'm not sure precisely what behaviour leave it at that for now as I'm not sure precisely what behaviour
I'd want. I'd want.
Magit also doesn't seem to provide a means of specifying the =-S=
flag for commit signing (only =--gpg-sign==) so I need to add that:
#+begin_src emacs-lisp
(eval-after-load 'magit
'(progn
(transient-append-suffix 'magit-commit "-C"
'("-S" "Sign commit" "-S"))))
#+end_src
** Docker ** Docker
I use docker quite a lot, unfortunately, so it's nice to be able to I use docker quite a lot, unfortunately, so it's nice to be able to
spawn containers etc from Emacs. The =docker= package provides a spawn containers etc from Emacs. The =docker= package provides a