Created
June 5, 2024 20:11
-
-
Save thadeu/1d55f1bc1334bd2187bbb3cc75aaa860 to your computer and use it in GitHub Desktop.
Alacritty configuration
This file contains 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
# https://alacritty.org/config-alacritty.html | |
import = [] | |
[font] | |
size = 14.0 | |
normal = { family = 'JetBrainsMono Nerd Font Mono' } | |
[window] | |
padding = { y= 5, x= 5 } | |
position = { y = 110, x = 30 } | |
dimensions = { columns = 207, lines = 36 } | |
opacity = 1.0 | |
decorations = "buttonless" | |
[cursor] | |
unfocused_hollow = true | |
style = { blinking = "Never" } | |
[env] | |
TERM = "xterm-256color" | |
[scrolling] | |
history = 2000 | |
[terminal] | |
osc52 = "CopyPaste" | |
[selection] | |
# Characters that are used as separators for "semantic words" in Alacritty | |
semantic_escape_chars = ",│`|:\"' ()[]{}<>\\t" # Default: ",│`|:\"' ()[]{}<>\\t" | |
# When set to true, selected text will be copied to the primary clipboard | |
save_to_clipboard = true # Default: false | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment