forked from jan-warchol/selenized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkitty.conf.template
87 lines (68 loc) · 2.74 KB
/
kitty.conf.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# vim:fileencoding=utf-8:ft=conf:foldmethod=marker
# !!COL!{name}! color scheme for Kitty
#: Color scheme {{{
#: The foreground and background colors
foreground !!COL!{fg_0.srgb}!
background !!COL!{bg_0.srgb}!
#: The opacity of the background. A number between 0 and 1, where 1 is
#: opaque and 0 is fully transparent. This will only work if
#: supported by the OS (for instance, when using a compositor under
#: X11). Note that it only sets the default background color's
#: opacity. This is so that things like the status bar in vim,
#: powerline prompts, etc. still look good. But it means that if you
#: use a color theme with a background color in your editor, it will
#: not be rendered as transparent. Instead you should change the
#: default background color in your kitty config and not use a
#: background color in the editor color scheme. Or use the escape
#: codes to set the terminals default colors in a shell script to
#: launch your editor. Be aware that using a value less than 1.0 is a
#: (possibly significant) performance hit. If you want to dynamically
#: change transparency of windows set dynamic_background_opacity to
#: yes (this is off by default as it has a performance cost)
background_opacity 1.0
#: Allow changing of the background_opacity dynamically, using either
#: keyboard shortcuts (increase_background_opacity and
#: decrease_background_opacity) or the remote control facility.
dynamic_background_opacity no
#: How much to dim text that has the DIM/FAINT attribute set. One
#: means no dimming and zero means fully dimmed (i.e. invisible).
dim_opacity 0.625
#: The foreground for text selected with the mouse. A value of none
#: means to leave the color unchanged.
selection_foreground none
#: The background for text selected with the mouse.
selection_background !!COL!{bg_2.srgb}!
#: Tab bar colors
active_tab_foreground !!COL!{fg_1.srgb}!
active_tab_background !!COL!{bg_2.srgb}!
inactive_tab_foreground !!COL!{dim_0.srgb}!
inactive_tab_background !!COL!{bg_0.srgb}!
tab_bar_background !!COL!{bg_0.srgb}!
#: The 16 terminal colors. There are 8 basic colors, each color has a
#: dull and bright version. You can also set the remaining colors from
#: the 256 color table as color16 to color255.
#: black
color0 !!COL!{bg_1.srgb}!
color8 !!COL!{bg_2.srgb}!
#: red
color1 !!COL!{red.srgb}!
color9 !!COL!{br_red.srgb}!
#: green
color2 !!COL!{green.srgb}!
color10 !!COL!{br_green.srgb}!
#: yellow
color3 !!COL!{yellow.srgb}!
color11 !!COL!{br_yellow.srgb}!
#: blue
color4 !!COL!{blue.srgb}!
color12 !!COL!{br_blue.srgb}!
#: magenta
color5 !!COL!{magenta.srgb}!
color13 !!COL!{br_magenta.srgb}!
#: cyan
color6 !!COL!{cyan.srgb}!
color14 !!COL!{br_cyan.srgb}!
#: white
color7 !!COL!{dim_0.srgb}!
color15 !!COL!{fg_1.srgb}!
#: }}}