Naposledy aktivní 1 day ago

Configuración completa de Alacritty en TOML (v0.17.0) con tema Catppuccin Mocha, atajos de teclado y Vi mode

atareao's Avatar atareao revidoval tento gist 1 day ago. Přejít na revizi

1 file changed, 93 insertions

alacritty.toml(vytvořil soubor)

@@ -0,0 +1,93 @@
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 + ]
Novější Starší