Created
November 3, 2025 16:12
-
-
Save JamsMendez/87d34af30add15c3e9c4a958d450b445 to your computer and use it in GitHub Desktop.
Settings for alacritty terminal
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
| [general] | |
| live_config_reload = true | |
| import = ["astrodark.toml"] | |
| [cursor] | |
| style = "Beam" | |
| unfocused_hollow = true | |
| [font] | |
| size = 12 | |
| # size = 20 | |
| [font.bold] | |
| family = "MonaspiceKr Nerd Font" | |
| # style = "Bold" | |
| [font.glyph_offset] | |
| x = 0 | |
| y = 0 | |
| [font.italic] | |
| family = "MonaspiceRn Nerd Font" | |
| # family = "GeistMono Nerd Font" | |
| # style = "Regular" | |
| [font.normal] | |
| family = "MonaspiceNe Nerd Font" | |
| # family = "GeistMono Nerd Font" | |
| # style = "Regular" | |
| [font.offset] | |
| x = 0 | |
| y = 0 | |
| # [mouse] | |
| # hide_when_typing = false | |
| # bindings = [ | |
| # { mouse = "Right", action = "Paste" } | |
| # # { mouse = "Right", action = "CopySelection" }, | |
| # ] | |
| [scrolling] | |
| history = 10000 | |
| multiplier = 3 | |
| [selection] | |
| save_to_clipboard = true | |
| semantic_escape_chars = ",│`|:\"' ()[]{}<>" | |
| # [keyboard] | |
| # bindings = [ | |
| # { key = "N", mods = "Control|Shift", action = "CreateNewWindow" }, | |
| # ] | |
| [terminal.shell] | |
| # args = ["-NoLogo"] | |
| # program = "pwsh.exe" | |
| # using WSL | |
| program = "wsl.exe -d FedoraLinux-42 --user jamsmendez --cd ~ --exec /home/jamsmendez/.cargo/bin/zellij" | |
| [window] | |
| decorations = "full" | |
| dynamic_padding = true | |
| opacity = 0.96 | |
| [window.dimensions] | |
| columns = 100 | |
| lines = 30 | |
| [window.padding] | |
| x = 1 | |
| y = 1 | |
| # astrodark.toml | |
| # AstroTheme Alacritty Colors | |
| # Default colors | |
| [colors.primary] | |
| background = '#1A1D23' | |
| foreground = '#9B9FA9' | |
| # Normal colors | |
| [colors.normal] | |
| black = '#111317' | |
| red = '#FF838B' | |
| green = '#87C05F' | |
| yellow = '#DFAB25' | |
| blue = '#5EB7FF' | |
| magenta = '#DD97F1' | |
| cyan = '#4AC2B8' | |
| white = '#9B9FA9' | |
| # Bright colors | |
| [colors.bright] | |
| black = '#34363A' | |
| red = '#FFA6AE' | |
| green = '#AAE382' | |
| yellow = '#FFCE48' | |
| blue = '#81DAFF' | |
| magenta = '#FFBAFF' | |
| cyan = '#6DE5DB' | |
| white = '#D0D3DE' | |
| # Indexed Colors | |
| [[colors.indexed_colors]] | |
| index = 16 | |
| color = '#EB8332' | |
| [[colors.indexed_colors]] | |
| index = 17 | |
| color = '#F8747E' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment