mirror of https://github.com/Flinner/dots.git
feat(emacs): add vterm
This commit is contained in:
parent
b45dca7eb1
commit
778cde16a8
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue