]> git.madduck.net Git - etc/alacritty.git/blob - .config/alacritty/alacritty.toml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

catppuccin color theme
[etc/alacritty.git] / .config / alacritty / alacritty.toml
1 [general]
2 live_config_reload = true
3
4 [window]
5 dynamic_padding = true
6 decorations = "None"
7
8 [font]
9 normal = { family = "DejaVuSansM Nerd Font Mono" }
10 size = 8
11
12 [selection]
13 semantic_escape_chars = ",│`|\"' ()[]{}<>\t/"
14
15 [terminal]
16 shell = { program = "/bin/zsh", args = ["-l"] }
17
18 [keyboard]
19 bindings = [
20   { key = "s", mods = "Control|Alt", action = "SearchBackward" },
21   { key = "v", mods = "Control|Alt", action = "Paste" },
22   { key = "c", mods = "Control|Alt", action = "Copy" },
23
24   { key = "+", mods = "Control|Shift", action = "IncreaseFontSize" },
25   { key = "-", mods = "Control", action = "DecreaseFontSize" },
26   { key = "0", mods = "Control", action = "ResetFontSize" },
27
28   { key = "PageUp", mods = "Shift", action = "ScrollPageUp" },
29   { key = "PageDown", mods = "Shift", action = "ScrollPageDown" },
30   { key = "End", mods = "Shift", action = "ScrollToBottom" },
31   { key = "Home", mods = "Shift", action = "ScrollToTop" },
32
33   { key = "ArrowUp", mode = "Search", action = "SearchFocusNext" },
34   { key = "ArrowDown", mode = "Search", action = "SearchFocusPrevious" },
35   { key = "Enter", mode = "Search", action = "SearchCancel" },
36
37   # until https://github.com/alacritty/alacritty/pull/8562 is merged
38   { key = "Enter", mods = "Shift", chars = "\u001b[13;2u" },
39 ]
40
41 # catppuccin/mocha from https://github.com/catppuccin/alacritty/raw/main/catppuccin-mocha.toml
42
43 [colors.primary]
44 background = "#1e1e2e"
45 foreground = "#cdd6f4"
46 dim_foreground = "#7f849c"
47 bright_foreground = "#cdd6f4"
48
49 [colors.cursor]
50 text = "#1e1e2e"
51 cursor = "#f5e0dc"
52
53 [colors.vi_mode_cursor]
54 text = "#1e1e2e"
55 cursor = "#b4befe"
56
57 [colors.search.matches]
58 foreground = "#1e1e2e"
59 background = "#a6adc8"
60
61 [colors.search.focused_match]
62 foreground = "#1e1e2e"
63 background = "#a6e3a1"
64
65 [colors.footer_bar]
66 foreground = "#1e1e2e"
67 background = "#a6adc8"
68
69 [colors.hints.start]
70 foreground = "#1e1e2e"
71 background = "#f9e2af"
72
73 [colors.hints.end]
74 foreground = "#1e1e2e"
75 background = "#a6adc8"
76
77 [colors.selection]
78 text = "#1e1e2e"
79 background = "#f5e0dc"
80
81 [colors.normal]
82 black = "#45475a"
83 red = "#f38ba8"
84 green = "#a6e3a1"
85 yellow = "#f9e2af"
86 blue = "#89b4fa"
87 magenta = "#f5c2e7"
88 cyan = "#94e2d5"
89 white = "#bac2de"
90
91 [colors.bright]
92 black = "#585b70"
93 red = "#f38ba8"
94 green = "#a6e3a1"
95 yellow = "#f9e2af"
96 blue = "#89b4fa"
97 magenta = "#f5c2e7"
98 cyan = "#94e2d5"
99 white = "#a6adc8"
100
101 [[colors.indexed_colors]]
102 index = 16
103 color = "#fab387"
104
105 [[colors.indexed_colors]]
106 index = 17
107 color = "#f5e0dc"