alacritty.toml
· 2.6 KiB · TOML
Исходник
# Alacritty Configuration (TOML)
# Version: 0.17.0
# Tema: Catppuccin Mocha
# Fuente: JetBrainsMono Nerd Font
[window]
padding = { x = 3, y = 3 }
opacity = 0.93
blur = true
decorations = "none"
startup_mode = "Windowed"
dynamic_title = true
[font]
size = 11.0
[font.normal]
family = "JetBrainsMono Nerd Font"
style = "Regular"
[font.bold]
family = "JetBrainsMono Nerd Font"
style = "Bold"
[font.italic]
family = "JetBrainsMono Nerd Font"
style = "Italic"
[font.bold_italic]
family = "JetBrainsMono Nerd Font"
style = "Bold Italic"
[colors]
draw_bold_text_with_bright_colors = true
[colors.primary]
background = "#1e1e2e"
foreground = "#cdd6f4"
[colors.normal]
black = "#45475a"
red = "#f38ba8"
green = "#a6e3a1"
yellow = "#f9e2af"
blue = "#89b4fa"
magenta = "#f5c2e7"
cyan = "#94e2d5"
white = "#bac2de"
[colors.bright]
black = "#585b70"
red = "#f38ba8"
green = "#a6e3a1"
yellow = "#f9e2af"
blue = "#89b4fa"
magenta = "#f5c2e7"
cyan = "#94e2d5"
white = "#a6adc8"
[cursor]
style = "Block"
vi_mode_style = "Underline"
blinking = "Off"
[mouse]
hide_when_typing = true
[selection]
semantic_escape_chars = ",|\`|:\"\' ()[]{}<>\t"
[shell]
program = "/usr/bin/zsh"
[keyboard]
bindings = [
{ key = "Paste", action = "Paste" },
{ key = "Copy", action = "Copy" },
{ key = "L", mods = "Control", action = "ClearLogNotice" },
{ key = "V", mods = "Control|Shift", action = "Paste" },
{ key = "C", mods = "Control|Shift", action = "Copy" },
{ key = "N", mods = "Control|Shift", action = "SpawnNewInstance" },
{ key = "Key0", mods = "Control", action = "ResetFontSize" },
{ key = "Equals", mods = "Control", action = "IncreaseFontSize" },
{ key = "Add", mods = "Control", action = "IncreaseFontSize" },
{ key = "Subtract", mods = "Control", action = "DecreaseFontSize" },
{ key = "Minus", mods = "Control", action = "DecreaseFontSize" },
{ key = "PageUp", mods = "Shift", mode = "~Alt", action = "ScrollPageUp" },
{ key = "PageDown", mods = "Shift", mode = "~Alt", action = "ScrollPageDown" },
{ key = "Home", mods = "Shift", mode = "~Alt", action = "ScrollToTop" },
{ key = "End", mods = "Shift", mode = "~Alt", action = "ScrollToBottom" },
{ key = "Space", mods = "Control|Shift", action = "ToggleViMode" },
{ key = "F", mods = "Control|Shift", action = "SearchForward" },
]
| 1 | # Alacritty Configuration (TOML) |
| 2 | # Version: 0.17.0 |
| 3 | # Tema: Catppuccin Mocha |
| 4 | # Fuente: JetBrainsMono Nerd Font |
| 5 | |
| 6 | [window] |
| 7 | padding = { x = 3, y = 3 } |
| 8 | opacity = 0.93 |
| 9 | blur = true |
| 10 | decorations = "none" |
| 11 | startup_mode = "Windowed" |
| 12 | dynamic_title = true |
| 13 | |
| 14 | [font] |
| 15 | size = 11.0 |
| 16 | |
| 17 | [font.normal] |
| 18 | family = "JetBrainsMono Nerd Font" |
| 19 | style = "Regular" |
| 20 | |
| 21 | [font.bold] |
| 22 | family = "JetBrainsMono Nerd Font" |
| 23 | style = "Bold" |
| 24 | |
| 25 | [font.italic] |
| 26 | family = "JetBrainsMono Nerd Font" |
| 27 | style = "Italic" |
| 28 | |
| 29 | [font.bold_italic] |
| 30 | family = "JetBrainsMono Nerd Font" |
| 31 | style = "Bold Italic" |
| 32 | |
| 33 | [colors] |
| 34 | draw_bold_text_with_bright_colors = true |
| 35 | |
| 36 | [colors.primary] |
| 37 | background = "#1e1e2e" |
| 38 | foreground = "#cdd6f4" |
| 39 | |
| 40 | [colors.normal] |
| 41 | black = "#45475a" |
| 42 | red = "#f38ba8" |
| 43 | green = "#a6e3a1" |
| 44 | yellow = "#f9e2af" |
| 45 | blue = "#89b4fa" |
| 46 | magenta = "#f5c2e7" |
| 47 | cyan = "#94e2d5" |
| 48 | white = "#bac2de" |
| 49 | |
| 50 | [colors.bright] |
| 51 | black = "#585b70" |
| 52 | red = "#f38ba8" |
| 53 | green = "#a6e3a1" |
| 54 | yellow = "#f9e2af" |
| 55 | blue = "#89b4fa" |
| 56 | magenta = "#f5c2e7" |
| 57 | cyan = "#94e2d5" |
| 58 | white = "#a6adc8" |
| 59 | |
| 60 | [cursor] |
| 61 | style = "Block" |
| 62 | vi_mode_style = "Underline" |
| 63 | blinking = "Off" |
| 64 | |
| 65 | [mouse] |
| 66 | hide_when_typing = true |
| 67 | |
| 68 | [selection] |
| 69 | semantic_escape_chars = ",|\`|:\"\' ()[]{}<>\t" |
| 70 | |
| 71 | [shell] |
| 72 | program = "/usr/bin/zsh" |
| 73 | |
| 74 | [keyboard] |
| 75 | bindings = [ |
| 76 | { key = "Paste", action = "Paste" }, |
| 77 | { key = "Copy", action = "Copy" }, |
| 78 | { key = "L", mods = "Control", action = "ClearLogNotice" }, |
| 79 | { key = "V", mods = "Control|Shift", action = "Paste" }, |
| 80 | { key = "C", mods = "Control|Shift", action = "Copy" }, |
| 81 | { key = "N", mods = "Control|Shift", action = "SpawnNewInstance" }, |
| 82 | { key = "Key0", mods = "Control", action = "ResetFontSize" }, |
| 83 | { key = "Equals", mods = "Control", action = "IncreaseFontSize" }, |
| 84 | { key = "Add", mods = "Control", action = "IncreaseFontSize" }, |
| 85 | { key = "Subtract", mods = "Control", action = "DecreaseFontSize" }, |
| 86 | { key = "Minus", mods = "Control", action = "DecreaseFontSize" }, |
| 87 | { key = "PageUp", mods = "Shift", mode = "~Alt", action = "ScrollPageUp" }, |
| 88 | { key = "PageDown", mods = "Shift", mode = "~Alt", action = "ScrollPageDown" }, |
| 89 | { key = "Home", mods = "Shift", mode = "~Alt", action = "ScrollToTop" }, |
| 90 | { key = "End", mods = "Shift", mode = "~Alt", action = "ScrollToBottom" }, |
| 91 | { key = "Space", mods = "Control|Shift", action = "ToggleViMode" }, |
| 92 | { key = "F", mods = "Control|Shift", action = "SearchForward" }, |
| 93 | ] |