Created
May 4, 2026 13:12
-
-
Save caike/5aa2431df0a23873c6b69acf68d7ab96 to your computer and use it in GitHub Desktop.
Allacrity Configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [colors.bright] | |
| black = "#6272a4" | |
| blue = "#d6acff" | |
| cyan = "#a4ffff" | |
| green = "#69ff94" | |
| magenta = "#ff92df" | |
| red = "#ff6e6e" | |
| white = "#ffffff" | |
| yellow = "#ffffa5" | |
| [colors.cursor] | |
| cursor = "CellForeground" | |
| text = "CellBackground" | |
| [colors.hints.end] | |
| background = "#282a36" | |
| foreground = "#f1fa8c" | |
| [colors.hints.start] | |
| background = "#f1fa8c" | |
| foreground = "#282a36" | |
| [colors.line_indicator] | |
| background = "None" | |
| foreground = "None" | |
| [colors.normal] | |
| black = "#21222c" | |
| blue = "#bd93f9" | |
| cyan = "#8be9fd" | |
| green = "#50fa7b" | |
| magenta = "#ff79c6" | |
| red = "#ff5555" | |
| white = "#f8f8f2" | |
| yellow = "#f1fa8c" | |
| [colors.primary] | |
| background = "#282a36" | |
| bright_foreground = "#ffffff" | |
| foreground = "#f8f8f2" | |
| [colors.search.focused_match] | |
| background = "#ffb86c" | |
| foreground = "#44475a" | |
| #[colors.search.footer_bar] | |
| #background = "#282a36" | |
| #foreground = "#f8f8f2" | |
| [colors.search.matches] | |
| background = "#50fa7b" | |
| foreground = "#44475a" | |
| [colors.selection] | |
| background = "#44475a" | |
| text = "CellForeground" | |
| [colors.vi_mode_cursor] | |
| cursor = "CellForeground" | |
| text = "CellBackground" | |
| [font] | |
| size = 18 | |
| [font.normal] | |
| family = "Hasklug Nerd Font Mono" | |
| [terminal.shell] | |
| program = "/bin/zsh" | |
| [window] | |
| dynamic_title = false | |
| option_as_alt = "Both" | |
| [window.padding] | |
| x = 6 | |
| y = 4 | |
| [terminal] | |
| osc52 = "CopyPaste" | |
| [mouse] | |
| hide_when_typing = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| font: | |
| normal: | |
| family: Hasklug Nerd Font Mono | |
| size: 18 | |
| ############# | |
| ## Dracula ## | |
| ############# | |
| colors: | |
| primary: | |
| background: '#282a36' | |
| foreground: '#f8f8f2' | |
| bright_foreground: '#ffffff' | |
| cursor: | |
| text: CellBackground | |
| cursor: CellForeground | |
| vi_mode_cursor: | |
| text: CellBackground | |
| cursor: CellForeground | |
| search: | |
| matches: | |
| foreground: '#44475a' | |
| background: '#50fa7b' | |
| focused_match: | |
| foreground: '#44475a' | |
| background: '#ffb86c' | |
| footer_bar: | |
| background: '#282a36' | |
| foreground: '#f8f8f2' | |
| hints: | |
| start: | |
| foreground: '#282a36' | |
| background: '#f1fa8c' | |
| end: | |
| foreground: '#f1fa8c' | |
| background: '#282a36' | |
| line_indicator: | |
| foreground: None | |
| background: None | |
| selection: | |
| text: CellForeground | |
| background: '#44475a' | |
| normal: | |
| black: '#21222c' | |
| red: '#ff5555' | |
| green: '#50fa7b' | |
| yellow: '#f1fa8c' | |
| blue: '#bd93f9' | |
| magenta: '#ff79c6' | |
| cyan: '#8be9fd' | |
| white: '#f8f8f2' | |
| bright: | |
| black: '#6272a4' | |
| red: '#ff6e6e' | |
| green: '#69ff94' | |
| yellow: '#ffffa5' | |
| blue: '#d6acff' | |
| magenta: '#ff92df' | |
| cyan: '#a4ffff' | |
| white: '#ffffff' | |
| window: | |
| option_as_alt: Both | |
| # Window padding (changes require restart) | |
| # | |
| # Blank space added around the window in pixels. This padding is scaled | |
| # by DPI and the specified value is always added at both opposing sides. | |
| padding: | |
| x: 6 | |
| y: 4 | |
| # Allow terminal applications to change Alacritty's window title. | |
| dynamic_title: false | |
| shell: | |
| program: /bin/zsh | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment