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