Commit 268654b256bf

Vincent Demeester <vincent@sbr.pm>
2024-06-12 15:27:08
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>
1 parent 09004fd
Changed files (1)
tools
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