summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/vterm-setup.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/vterm-setup.el')
-rw-r--r--.emacs.d/lisp/vterm-setup.el22
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)
+