From e0d74ff56627065e0fe6ef5dba48d9eb9f7f03f0 Mon Sep 17 00:00:00 2001 From: Jakub Date: Fri, 14 Nov 2025 12:09:11 +0800 Subject: [PATCH] Give vterm the same treatment --- userland/terminal.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/userland/terminal.el b/userland/terminal.el index a7d4db6..218c0fe 100644 --- a/userland/terminal.el +++ b/userland/terminal.el @@ -24,13 +24,13 @@ (require 'transient) -(defcustom theurgy-enable-vterm-windows nil +(defcustom theurgy-enable-vterm-windows (equal system-type 'gnu/linux) "Whether `vterm' should be enabled on Windows sytems." :type 'boolean :group 'theurgy :group 'theurgy-compat) -(when (or (equal system-type 'gnu/linux) theurgy-enable-vterm-windows) +(when theurgy-enable-vterm (use-package vterm :ensure t))