Skip to content

Instantly share code, notes, and snippets.

@MsRCAtN
Last active April 25, 2024 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MsRCAtN/e4889686bfb199f4561fe84c6f5ef2a5 to your computer and use it in GitHub Desktop.
Save MsRCAtN/e4889686bfb199f4561fe84c6f5ef2a5 to your computer and use it in GitHub Desktop.
alacritty toml
live_config_reload = true
[colors]
draw_bold_text_with_bright_colors = true
[colors.bright]
black = "#4d4d4d"
blue = "#a277ff"
cyan = "#61ffca"
green = "#61ffca"
magenta = "#a277ff"
red = "#ff6767"
white = "#edecee"
yellow = "#ffca85"
[colors.cursor]
cursor = "#a277ff"
[colors.normal]
black = "#110f18"
blue = "#a277ff"
cyan = "#61ffca"
green = "#61ffca"
magenta = "#a277ff"
red = "#ff6767"
white = "#edecee"
yellow = "#ffca85"
[colors.primary]
background = "#15141b"
foreground = "#edecee"
[colors.search.focused_match]
background = "#9F7AF5"
foreground = "#ffffff"
[colors.search.matches]
background = "#ffffff"
foreground = "#000000"
[colors.selection]
background = "#29263c"
text = "CellForeground"
[cursor.style]
shape = "Beam"
[font]
size = 14
[font.normal]
family = "0xProto Nerd Font Mono"
style = "Regular"
[font.bold]
family = "0xProto Nerd Font Mono"
style = "Bold"
[font.italic]
family = "0xProto Nerd Font Mono"
style = "Italic"
[font.glyph_offset]
x = 0
y = 0
[font.offset]
x = 0
y = 0
[[keyboard.bindings]]
chars = "\f"
key = "R"
mode = "~Vi|~Search"
mods = "Command"
[[keyboard.bindings]]
action = "ClearHistory"
key = "R"
mode = "~Vi|~Search"
mods = "Command"
[[keyboard.bindings]]
action = "Hide"
key = "W"
mods = "Command"
[[keyboard.bindings]]
action = "Quit"
key = "W"
mods = "Command|Shift"
[[keyboard.bindings]]
action = "SpawnNewInstance"
key = "N"
mods = "Command"
[[keyboard.bindings]]
action = "CreateNewWindow"
key = "T"
mods = "Command"
[[keyboard.bindings]]
chars = "\u001Bb"
key = "Left"
mods = "Alt"
[[keyboard.bindings]]
chars = "\u001Bf"
key = "Right"
mods = "Alt"
[[keyboard.bindings]]
chars = "\u0001"
key = "Left"
mods = "Command"
[[keyboard.bindings]]
chars = "\u0005"
key = "Right"
mods = "Command"
[[keyboard.bindings]]
chars = "\u0015"
key = "Back"
mods = "Command"
[[keyboard.bindings]]
chars = "\u001B\u007F"
key = "Back"
mods = "Alt"
[scrolling]
history = 100000
multiplier = 3
[selection]
save_to_clipboard = true
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
[shell]
args = ["-l", "-c", "tmux attach || tmux new"]
program = "/bin/zsh"
[window]
decorations = "transparent"
[window.dimensions]
columns = 160
lines = 48
[window.padding]
x = 10
y = 20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment