Skip to content

Instantly share code, notes, and snippets.

@Eric-Jalal
Last active March 13, 2024 22:30
Show Gist options
  • Save Eric-Jalal/7d3a9fc7146d946af7b9bc3852c380d1 to your computer and use it in GitHub Desktop.
Save Eric-Jalal/7d3a9fc7146d946af7b9bc3852c380d1 to your computer and use it in GitHub Desktop.
Alacritty config file
# Shell settings
[shell]
args = ['--login']
program = "/bin/zsh"
# Window settings
[window]
dimensions = { columns = 200, lines = 50 }
padding = { x = 10, y = 10 }
dynamic_padding = true
decorations = "Full"
opacity = 1
# Font settings
[font]
normal = { family = "Hack Nerd Font Mono", style = "Regular" }
bold = { family = "Hack Nerd Font Mono", style = "Bold" }
italic = { family = "Hack Nerd Font Mono", style = "Italic" }
bold_italic = { family = "Hack Nerd Font Mono", style = "Bold Italic" }
size = 14.0
# Color scheme
[colors.primary]
background = "#282a36"
foreground = "#f8f8f2"
bright_foreground = "#ffffff"
[colors.cursor]
text = "#282a36"
cursor = "#f8f8f2"
[colors.vi_mode_cursor]
text = "CellBackground"
cursor = "CellForeground"
[colors.selection]
text = "CellForeground"
background = "#44475a"
[colors.normal]
black = "#21222c"
red = "#ff5555"
green = "#50fa7b"
yellow = "#f1fa8c"
blue = "#bd93f9"
magenta = "#ff79c6"
cyan = "#8be9fd"
white = "#f8f8f2"
[colors.bright]
black = "#6272a4"
red = "#ff6e6e"
green = "#69ff94"
yellow = "#ffffa5"
blue = "#d6acff"
magenta = "#ff92df"
cyan = "#a4ffff"
white = "#ffffff"
[colors.search.matches]
foreground = "#44475a"
background = "#50fa7b"
[colors.search.focused_match]
foreground = "#44475a"
background = "#ffb86c"
[colors.footer_bar]
background = "#282a36"
foreground = "#f8f8f2"
[colors.hints.start]
foreground = "#282a36"
background = "#f1fa8c"
[colors.hints.end]
foreground = "#f1fa8c"
background = "#282a36"
# Scrolling
[scrolling]
history = 10000
multiplier = 2
# Bell
[bell]
animation = "EaseOut"
duration = 200
color = "#ff0000"
# Debug (optional, for developers)
[debug]
render_timer = false
log_level = "Info"
@Eric-Jalal
Copy link
Author

Screenshot 2024-03-14 at 0 29 54

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment