mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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:
@@ -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))
|
||||
|
||||
14
modules/shell/siren-vterm.el
Normal file
14
modules/shell/siren-vterm.el
Normal 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
|
||||
Reference in New Issue
Block a user