Utoljára aktív 8 months ago

alacritty.toml Eredeti
1[terminal]
2shell = "C:/Program Files/PowerShell/7/pwsh.exe"
3
4[general]
5import = ["%APPDATA%/alacritty/themes/flexoki.toml"]
6
7[font]
8normal.family = "等距更纱黑体 SC"
9size = 14
10
11[selection]
12save_to_clipboard = true
13
14[keyboard]
15bindings = [
16 { key = "N", mods = "Control", action = "CreateNewWindow" },
17 { key = "N", mods = "Control|Shift", action = "SpawnNewInstance" },
18]
19
20[mouse]
21bindings = [{ mouse = "Right", action = "Paste" }]
22
flexoki.toml Eredeti
1# from https://github.com/alacritty/alacritty-theme/blob/master/themes/flexoki.toml
2# based on https//stephango.com/flexoki and https//github.com/kepano/flexoki/tree/main/alacritty
3
4# Default colors
5[colors.primary]
6background = '#282726'
7foreground = '#FFFCF0'
8dim_foreground = '#FFFCF0'
9bright_foreground = '#FFFCF0'
10
11# Cursor colors
12[colors.cursor]
13text = '#FFFCF0'
14cursor = '#FFFCF0'
15
16# Normal colors
17[colors.normal]
18black = '#100F0F'
19red = '#AF3029'
20green = '#66800B'
21yellow = '#AD8301'
22blue = '#205EA6'
23magenta = '#A02F6F'
24cyan = '#24837B'
25white = '#FFFCF0'
26
27# Bright colors
28[colors.bright]
29black = '#100F0F'
30red = '#D14D41'
31green = '#879A39'
32yellow = '#D0A215'
33blue = '#4385BE'
34magenta = '#CE5D97'
35cyan = '#3AA99F'
36white = '#FFFCF0'
37
38# Dim colors
39[colors.dim]
40black = '#100F0F'
41red = '#AF3029'
42green = '#66800B'
43yellow = '#AD8301'
44blue = '#205EA6'
45magenta = '#A02F6F'
46cyan = '#24837B'
47white = '#FFFCF0'