debian-dots

dotfiles (does the obvious)
git clone [email protected]:dracuxan/debian-dots.git
Log | Files | Refs | README | LICENSE

alacritty.toml (641B)


      1 [font]
      2 size = 10
      3 
      4 [font.bold]
      5 family = "JetBrainsMono Nerd Font"
      6 style = "Bold"
      7 
      8 [font.italic]
      9 family = "JetBrainsMono Nerd Font"
     10 style = "Regular"
     11 
     12 [font.normal]
     13 family = "JetBrainsMono Nerd Font"
     14 style = "Regular"
     15 
     16 [font.offset]
     17 x = 0
     18 y = 0
     19 
     20 [scrolling]
     21 history = 10000
     22 multiplier = 3
     23 
     24 [selection]
     25 save_to_clipboard = true
     26 
     27 [window.padding]
     28 x = 10
     29 y = 10
     30 
     31 [keyboard]
     32 bindings = [
     33   # Alt + hjkl navigation
     34   { key = "H", mods = "Alt", chars = "\u001b[D" }, # Left
     35   { key = "J", mods = "Alt", chars = "\u001b[B" }, # Down
     36   { key = "K", mods = "Alt", chars = "\u001b[A" }, # Up
     37   { key = "L", mods = "Alt", chars = "\u001b[C" }, # Right
     38 ]