dotfiles/alacritty.toml

35 lines
838 B
TOML
Raw Normal View History

2024-05-13 20:51:32 +08:00
live_config_reload = true
[env]
TERM = "xterm-256color"
[shell]
program = "/home/linuxbrew/.linuxbrew/bin/tmux"
[window]
opacity = 0.9
[font]
size = 13.0
2024-07-13 18:26:04 +08:00
# offset.x = -1
2024-05-13 20:51:32 +08:00
[font.normal]
2024-07-13 18:26:04 +08:00
# family = "FiraCode Nerd Font"
family = "Berkeley Mono"
2024-05-13 20:51:32 +08:00
[font.bold]
2024-07-13 18:26:04 +08:00
family = "Berkeley Mono"
2024-05-13 20:51:32 +08:00
[font.italic]
2024-07-13 18:26:04 +08:00
family = "Berkeley Mono"
2024-05-13 20:51:32 +08:00
[font.bold_italic]
2024-07-13 18:26:04 +08:00
family = "Berkeley Mono"
2024-05-13 20:51:32 +08:00
[cursor.style]
shape = "Beam"
blinking = "Never"
[colors]
transparent_background_colors = true
draw_bold_text_with_bright_colors= true
[mouse]
hide_when_typing = true
[keyboard]
bindings = [
{ key = "N", mods = "Control|Shift", action = 'CreateNewWindow' },
{ key = "+", mods = "Control|Shift", action = 'IncreaseFontSize' },
{ key = "_", mods = "Control|Shift", action = 'DecreaseFontSize' },
{ key = ")", mods = "Control|Shift", action = 'ResetFontSize' },
]