aboutsummaryrefslogtreecommitdiff
path: root/alacritty/.config/alacritty/alacritty.toml
blob: 43d34070f24e014946688c8703424afd20c444b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import = [
  "~/.config/alacritty/catppuccin-mocha.toml"
]

[window]
padding = { x = 16, y = 10 } # screen's aspect ratio always looks good
dynamic_padding = true
opacity = 0.95

[font]
normal = { family = "JetBrainsMono Nerd Font", style = "Regular" }

[bell]
animation = "Linear"
duration = 200

color = "#1e1e2e" # dont forget to change this

[cursor]
thickness = 0.2
style = { shape = "beam", blinking = "On" }
vi_mode_style = { shape = "underline", blinking = "On" }

blink_interval = 400
blink_timeout = 0

[keyboard]
bindings = [
  {key = "ArrowUp", mods = "Shift", mode = "~Vi", action = "ScrollPageUp"},
  {key = "ArrowDown", mods = "Shift", mode = "~Vi", action = "ScrollPageDown"}
]