feat(emacs): add vterm

This commit is contained in:
Flinner 2021-07-05 05:30:57 +03:00
parent b45dca7eb1
commit 778cde16a8
Signed by: flinner
GPG Key ID: 95CE0DA7F0E58CA6
1 changed files with 14 additions and 1 deletions

View File

@ -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