I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

1.2 KiB

VTerm

VTerm is an implementation of libvterm for Emacs.

Interactive Terminal

I noticed eshell wasn't enough when needing interactivity from the terminal. Going through Thinking in C++ for one of my courses required lots of terminal interaction which eshell was unable to handle. Since vterm is based on libvterm, an external C library, it's blazing fast and fully interactive. Add a few configurations:

  • Always compile the module

  • Install the required packages on Debian/Ubuntu

(use-package vterm
  :commands (vterm)
  :custom (vterm-always-compile-module t))

Shortcuts

Open a new vterm buffer with SPC v:

(dotfiles/leader
  "v" '(vterm-other-window :which-key "VTerm"))

Footnotes