Add vterm package
This commit is contained in:
17
README.org
17
README.org
@@ -779,13 +779,18 @@ With the transpose-frame package windows can be rearanged in a frame without the
|
|||||||
:bind ("M-t" . transpose-frame))
|
:bind ("M-t" . transpose-frame))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** terminal-here
|
** vterm
|
||||||
[[https://github.com/davidshepherd7/terminal-here][This]] package is used to open an extenal terminal emulator in the directory visited by the current buffer.
|
[[https://github.com/akermu/emacs-libvterm][vterm]] is a superiour alternative to the integrated eshell, shell or term modes.
|
||||||
|
The packages only works on linux and reuqires that emacs is compiled with module support (the ~module-file-suffix~ variable will be filled).
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package terminal-here)
|
(if (and (string-equal system-type "gnu/linux")
|
||||||
(global-set-key (kbd "C-<f5>") #'terminal-here-launch)
|
(bound-and-true-p module-file-suffix))
|
||||||
(global-set-key (kbd "C-<f6>") #'terminal-here-project-launch)
|
(use-package vterm
|
||||||
#+END_SRC
|
:ensure t
|
||||||
|
:custom
|
||||||
|
(vterm-kill-buffer-on-exit t)
|
||||||
|
(vterm-copy-exclude-prompt t)))
|
||||||
|
#+End_SRC
|
||||||
* Set Variables
|
* Set Variables
|
||||||
** General Emacs Options
|
** General Emacs Options
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|||||||
Reference in New Issue
Block a user