alacritty.toml
| @@ -1,5 +1,5 @@ | |||
| 1 | 1 | [terminal] | |
| 2 | - | shell = "D:/PowerShell/7/pwsh.exe" | |
| 2 | + | shell = "C:/Program Files/PowerShell/7/pwsh.exe" | |
| 3 | 3 | ||
| 4 | 4 | [general] | |
| 5 | 5 | import = ["%APPDATA%/alacritty/themes/flexoki.toml"] | |
flexoki.toml(檔案已創建)
| @@ -0,0 +1,47 @@ | |||
| 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' | |
alacritty.toml
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | shell = "D:/PowerShell/7/pwsh.exe" | |
| 3 | 3 | ||
| 4 | 4 | [general] | |
| 5 | - | import = ["%APPDATA%/alacritty/themes/themes/flexoki.toml"] | |
| 5 | + | import = ["%APPDATA%/alacritty/themes/flexoki.toml"] | |
| 6 | 6 | ||
| 7 | 7 | [font] | |
| 8 | 8 | normal.family = "等距更纱黑体 SC" | |
alacritty.toml(檔案已創建)
| @@ -0,0 +1,21 @@ | |||
| 1 | + | [terminal] | |
| 2 | + | shell = "D:/PowerShell/7/pwsh.exe" | |
| 3 | + | ||
| 4 | + | [general] | |
| 5 | + | import = ["%APPDATA%/alacritty/themes/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" }] | |