25 lines
402 B
TOML
25 lines
402 B
TOML
|
import = [
|
||
|
"~/.config/alacritty/chicago95.toml"
|
||
|
]
|
||
|
|
||
|
shell = "zsh"
|
||
|
colors.primary.background = "#000000"
|
||
|
|
||
|
[font]
|
||
|
normal.family = "Monocraft Nerd Font"
|
||
|
size = 12.5
|
||
|
|
||
|
[window]
|
||
|
padding = {x = 5, y = 5 }
|
||
|
dynamic_title = true
|
||
|
|
||
|
[keyboard]
|
||
|
bindings = [
|
||
|
{key = "J", mods = "Alt", action = "ScrollPageDown"},
|
||
|
{key = "K", mods = "Alt", action = "ScrollPageUp"},
|
||
|
]
|
||
|
|
||
|
[scrolling]
|
||
|
history = 20000
|
||
|
multiplier = 4
|