config/alacritty/alacritty.toml

127 lines
1.7 KiB
TOML
Raw Normal View History

[general]
2023-08-28 10:28:10 +02:00
live_config_reload = true
[bell]
animation = "EaseOutExpo"
2024-05-11 13:57:12 +02:00
color = "0x1c1d27"
2023-08-28 10:28:10 +02:00
duration = 1
[colors]
draw_bold_text_with_bright_colors = true
[cursor]
style = "Beam"
unfocused_hollow = true
[font]
size = 12.0
[font.bold]
family = "JetBrainsMono Nerd Font"
style = "Bold"
[font.italic]
family = "JetBrainsMono Nerd Font"
style = "Italic"
[font.normal]
family = "JetBrainsMono Nerd Font"
style = "Normal"
[font.offset]
x = 0
y = 0
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Alt"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Alt"
[[keyboard.bindings]]
action = "Quit"
key = "Q"
mods = "Super"
[[keyboard.bindings]]
action = "ToggleFullscreen"
key = "N"
mods = "Alt"
[[keyboard.bindings]]
action = "SpawnNewInstance"
key = "Return"
mods = "Super"
[[keyboard.bindings]]
action = "ScrollLineDown"
key = "J"
mods = "Alt"
[[keyboard.bindings]]
action = "ScrollLineUp"
key = "K"
mods = "Alt"
[[keyboard.bindings]]
action = "ScrollToBottom"
key = "L"
mods = "Alt"
[[keyboard.bindings]]
action = "ScrollToBottom"
key = "H"
mods = "Alt"
2024-05-11 13:57:12 +02:00
# Colors
# Default colors
[colors.primary]
2024-05-11 13:57:12 +02:00
background = '#1c1d27'
foreground = '#e1e7ec'
2024-04-01 17:43:34 +02:00
# Normal colors
[colors.normal]
2024-05-11 13:57:12 +02:00
black = '#1b1d36'
red = '#ca2e55'
green = '#53dd6c'
yellow = '#fffb85'
blue = '#99d6ea'
magenta = '#fca6d1'
cyan = '#bfffbc'
white = '#e1e7ec'
2024-04-01 17:43:34 +02:00
# Bright colors
[colors.bright]
2024-05-11 13:57:12 +02:00
black = '#17182c'
red = '#f8003e'
green = '#3ff15f'
yellow = '#fffb85'
blue = '#84e1ff'
magenta = '#ffa3d1'
cyan = '#bfffbc'
white = '#cee9ff'
2023-08-28 10:28:10 +02:00
[mouse]
hide_when_typing = true
[scrolling]
history = 1000
[terminal.shell]
2023-08-28 10:28:10 +02:00
program = "/bin/zsh"
[window]
decorations = "None"
dynamic_padding = true
2024-01-20 20:16:29 +01:00
opacity = 0.9
2023-08-28 10:28:10 +02:00
[window.padding]
x = 32
y = 32
2023-09-04 18:54:19 +02:00