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")
|
":" '(eval-expression :which-key "eval expression")
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
**** Toggles (t)
|
**** Toggles (t)
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
"t" '(:ignore t :which-key "toggles")
|
"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")
|
"fD" '(dired-jump :which-key "dired current")
|
||||||
#+end_src
|
#+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)
|
**** Buffers (b)
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
"b" '(:ignore t :which-key "buffers")
|
"b" '(:ignore t :which-key "buffers")
|
||||||
|
@ -924,3 +931,9 @@ Get treemacs-lsp
|
||||||
(unless (server-running-p) (server-start))
|
(unless (server-running-p) (server-start))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** Vterm
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package vterm
|
||||||
|
:ensure t)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue