From 778cde16a8d720ffed064bd4ae5a230bc5557a90 Mon Sep 17 00:00:00 2001 From: Flinner Date: Mon, 5 Jul 2021 05:30:57 +0300 Subject: [PATCH] feat(emacs): add vterm --- emacs.mine/.config/emacs.mine/emacs.org | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/emacs.mine/.config/emacs.mine/emacs.org b/emacs.mine/.config/emacs.mine/emacs.org index eaf95c8..fd5d7de 100644 --- a/emacs.mine/.config/emacs.mine/emacs.org +++ b/emacs.mine/.config/emacs.mine/emacs.org @@ -227,7 +227,6 @@ E: honestly I have no clue wtf that meant, but I will keep it ":" '(eval-expression :which-key "eval expression") #+end_src - **** Toggles (t) #+begin_src emacs-lisp "t" '(:ignore t :which-key "toggles") @@ -260,6 +259,14 @@ E: honestly I have no clue wtf that meant, but I will keep it "fD" '(dired-jump :which-key "dired current") #+end_src +**** Open (o) +#+begin_src emacs-lisp + "o" '(:ignore t :which-key "Open") + + "oT" '(vterm :which-key "Vterm in current window") + "ot" '(vterm-other-window :which-key "Vterm in other window") +#+end_src + **** Buffers (b) #+begin_src emacs-lisp "b" '(:ignore t :which-key "buffers") @@ -924,3 +931,9 @@ Get treemacs-lsp (unless (server-running-p) (server-start)) #+end_src +** Vterm +#+begin_src emacs-lisp +(use-package vterm + :ensure t) +#+end_src +