From b31f90af5ac142fe35cf40d1c1458b20170a7286 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 28 Mar 2026 14:52:43 -0400 Subject: refactor: Split Emacs config into multiple files Split Emacs config into multiple files for a more readable setup. --- .emacs.d/lisp/vterm-setup.el | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .emacs.d/lisp/vterm-setup.el (limited to '.emacs.d/lisp/vterm-setup.el') diff --git a/.emacs.d/lisp/vterm-setup.el b/.emacs.d/lisp/vterm-setup.el new file mode 100644 index 0000000..dbdea29 --- /dev/null +++ b/.emacs.d/lisp/vterm-setup.el @@ -0,0 +1,22 @@ +(use-package vterm + :ensure t) + +(set-face-attribute 'vterm-color-black nil :foreground "#171421" :background "#171421") +(set-face-attribute 'vterm-color-red nil :foreground "#C01C28" :background "#C01C28") +(set-face-attribute 'vterm-color-green nil :foreground "#26A269" :background "#26A269") +(set-face-attribute 'vterm-color-yellow nil :foreground "#A2734C" :background "#A2734C") +(set-face-attribute 'vterm-color-blue nil :foreground "#12488B" :background "#12488B") +(set-face-attribute 'vterm-color-magenta nil :foreground "#A347BA" :background "#A347BA") +(set-face-attribute 'vterm-color-cyan nil :foreground "#2AA1B3" :background "#2AA1B3") +(set-face-attribute 'vterm-color-white nil :foreground "#D0CFCC" :background "#D0CFCC") +(set-face-attribute 'vterm-color-bright-black nil :foreground "#5E5C64" :background "#5E5C64") +(set-face-attribute 'vterm-color-bright-red nil :foreground "#F66151" :background "#F66151") +(set-face-attribute 'vterm-color-bright-green nil :foreground "#33DA7A" :background "#33DA7A") +(set-face-attribute 'vterm-color-bright-yellow nil :foreground "#E9AD0C" :background "#E9AD0C") +(set-face-attribute 'vterm-color-bright-blue nil :foreground "#2A7BDE" :background "#2A7BDE") +(set-face-attribute 'vterm-color-bright-magenta nil :foreground "#C061CB" :background "#C061CB") +(set-face-attribute 'vterm-color-bright-cyan nil :foreground "#33C7DE" :background "#33C7DE") +(set-face-attribute 'vterm-color-bright-white nil :foreground "#FFFFFF" :background "#FFFFFF") + +(provide 'vterm-setup) + -- cgit v1.2.3