blob: e8e71a97d818c42a817dbae8504559bbf6b1d2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
(use-package vterm
:ensure t)
(setq vterm-kill-buffer-on-exit 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)
|