feat(shell): Switch shell-pop from ansi-term to vterm

It performs much butter, and renders htop basically as fast as a normal
terminal emulator.
This commit is contained in:
2020-07-14 02:27:21 +01:00
parent 84884e3fd1
commit 4338d85291
2 changed files with 18 additions and 2 deletions

View File

@@ -6,14 +6,16 @@
;;; Code:
(require 'siren-vterm)
(use-package shell-pop
:bind
("C-`" . shell-pop)
:custom
(shell-pop-full-span t)
(shell-pop-shell-type '("ansi-term" "*ansi-term*"
(lambda nil (ansi-term shell-pop-term-shell))))
(shell-pop-shell-type '("vterm" "*vterm*"
(lambda nil (vterm shell-pop-term-shell))))
(shell-pop-universal-key "C-`")
(shell-pop-window-position "bottom")
(shell-pop-window-size 40))

View File

@@ -0,0 +1,14 @@
;;; siren-vterm.el --- jimeh's Emacs Siren: vterm configuration.
;;; Commentary:
;; Basic configuration for vterm.
;;; Code:
(use-package vterm
:custom
(vterm-always-compile-module t))
(provide 'siren-vterm)
;;; siren-vterm.el ends here