26 lines
468 B
Markdown
26 lines
468 B
Markdown
# Alacritty Windows config
|
|
|
|
```
|
|
import = [
|
|
"C:/Users/foobar/AppData/Roaming/alacritty/tokyonight_moon.toml"
|
|
]
|
|
|
|
[font]
|
|
normal = { family = "JetBrainsMono Nerd Font", style = "Regular" }
|
|
size = 16
|
|
|
|
[window]
|
|
decorations = "Full"
|
|
padding = { x = 5, y = 5 }
|
|
dynamic_padding = true
|
|
|
|
[bell]
|
|
duration = 10
|
|
color = "#3a3a3a"
|
|
|
|
[cursor]
|
|
style = { shape = "Block", blinking = "Always" }
|
|
|
|
[keyboard]
|
|
bindings = [{ key = "T", mods = "Control", action = "CreateNewWindow" }]
|
|
```
|