From 6f908039c6f70929a79e6e756a55bb1c5b35ded1 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Mon, 29 Jan 2024 12:40:07 -0500 Subject: [PATCH] fix(emacs): add keybind for `vterm` Signed-off-by: Lucas Sta Maria --- .emacs.d/include/general.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/include/general.el b/.emacs.d/include/general.el index 9a5c9da..bb094ff 100644 --- a/.emacs.d/include/general.el +++ b/.emacs.d/include/general.el @@ -156,5 +156,8 @@ ;; Specify my function (maybe I should have done a lambda function) (setq compilation-exit-message-function 'compilation-exit-autoclose) +;; shell +(keymap-global-set "C-c v" #'vterm) + (provide 'general) ;;; general.el ends here