diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-28 14:52:43 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-28 14:52:43 -0400 |
| commit | b31f90af5ac142fe35cf40d1c1458b20170a7286 (patch) | |
| tree | b9e6a1c86a0597b51b8b974dd025eecf1ea62dba /.emacs.d/lisp/vterm-setup.el | |
| parent | 3e2f998ace2f1b4ff8e47a17c21069b80413a6e4 (diff) | |
refactor: Split Emacs config into multiple files
Split Emacs config into multiple files for a more readable setup.
Diffstat (limited to '.emacs.d/lisp/vterm-setup.el')
| -rw-r--r-- | .emacs.d/lisp/vterm-setup.el | 22 |
1 files changed, 22 insertions, 0 deletions
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) + |
