Last active
October 16, 2024 04:31
-
-
Save h4tr3d/0495bf69a9601c78cad5bb65db797113 to your computer and use it in GitHub Desktop.
Alacrity terminal 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
import = ["~/.config/alacritty/alacritty-theme/themes/konsole_linux.toml"] | |
live_config_reload = true | |
[cursor] | |
blink_interval = 500 | |
blink_timeout = 0 | |
thickness = 0.40 | |
[cursor.style] | |
shape = "Underline" | |
blinking = "On" | |
[env] | |
TERM = "xterm-256color" | |
WINIT_X11_SCALE_FACTOR = "1.0" | |
[font] | |
size = 12 | |
[font.bold] | |
family = "Meslo LG M DZ" | |
style = "Bold" | |
[font.bold_italic] | |
family = "Meslo LG M DZ" | |
style = "Bold Italic" | |
[font.italic] | |
family = "Meslo LG M DZ" | |
style = "Italic" | |
[font.normal] | |
family = "Meslo LG M DZ" | |
style = "Regular" | |
[keyboard] | |
bindings = [ | |
#{ key = "K", mods = "Shift|Control", chars = "\u000c" }, | |
#{ key = "K", mods = "Shift|Control", action = "ClearHistory" }, | |
{ key = "K", mods = "Control|Shift", "chars" = "reset\n" }, | |
{ action = "CreateNewWindow", key = "N", mods = "Shift|Control"} | |
] | |
[scrolling] | |
history = 10000 | |
[window] | |
dynamic_title = true | |
startup_mode = "Maximized" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment