Last active
April 4, 2024 22:42
-
-
Save BrunoMoreno/db4f98f90748a4a285e2c1b8234032b4 to your computer and use it in GitHub Desktop.
My linux alacritty configuration
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
import = [ | |
# using the https://github.com/alacritty/alacritty-theme repository | |
# with a lot of themes | |
"~/.config/alacritty/themes/themes/catppuccin_latte.toml" | |
] | |
live_config_reload = true | |
working_directory = "None" | |
[bell] | |
duration = 0 | |
[colors] | |
draw_bold_text_with_bright_colors = true | |
[colors.primary] | |
background = '#000000' | |
foreground = '#ffffff' | |
[cursor] | |
style = "Block" | |
unfocused_hollow = true | |
[debug] | |
log_level = "Warn" | |
persistent_logging = false | |
print_events = false | |
render_timer = false | |
[env] | |
TERM = "xterm-256color" | |
[font] | |
size = 13.0 | |
[font.bold] | |
family = "Agave Nerd Font" | |
style = "Bold" | |
[font.glyph_offset] | |
x = 0 | |
y = 0 | |
[font.italic] | |
family = "Agave Nerd Font" | |
style = "Italic" | |
[font.normal] | |
family = "Agave Nerd Font" | |
style = "Regular" | |
[font.offset] | |
x = 0 | |
y = 0 | |
[mouse] | |
hide_when_typing = false | |
[[mouse.bindings]] | |
action = "PasteSelection" | |
mouse = "Middle" | |
[scrolling] | |
history = 10000 | |
multiplier = 3 | |
[selection] | |
save_to_clipboard = false | |
semantic_escape_chars = ",│`|:\"' ()[]{}<>" | |
[window] | |
decorations = "none" | |
dynamic_padding = false | |
dynamic_title = true | |
opacity = 0.7 | |
startup_mode = "Windowed" | |
title = "Alacritty" | |
[window.dimensions] | |
columns = 170 | |
lines = 50 | |
[window.padding] | |
x = 25 | |
y = 25 | |
# set default shell | |
[shell] | |
program= "/bin/zsh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment