commit 268654b256bf2403e41a79e9dfe6d9a2a3742bd3
parent 09004fd8d30f4560d7b19b6c8321b7416ced8965
Author: Vincent Demeester <vincent@sbr.pm>
Date: Wed, 12 Jun 2024 15:27:08 +0200
tools/emacs: make sure we load vterm…
… when using conner. The reason is to make sure we can use the vterm
"type" without having to create a vterm (and thus load the library)
prior.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/emacs/config/config-projects.el b/tools/emacs/config/config-projects.el
@@ -73,7 +73,9 @@ switch to it. Otherwise, create a new vterm shell."
)
(use-package conner
- :bind (("C-x p C" . conner-run-project-command)))
+ :bind (("C-x p C" . conner-run-project-command))
+ :init
+ (require 'vterm))
(provide 'config-projects)
;;; config-projects.el ends here