0
0

alacritty.toml 962 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
  2. # alacritty.toml
  3. #
  4. # Docs:
  5. # * https://alacritty.org/config-alacritty.html
  6. #
  7. ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
  8. # https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd
  9. import = [
  10. # Keybinding fixes for MacOS
  11. "~/.config/alacritty/alacritty-fixed-mac-keyboard-bindings.toml",
  12. # Color scheme: expected to be automatically generated
  13. "~/.config/alacritty/.theme.toml",
  14. ]
  15. [env]
  16. TERM = "alacritty"
  17. [shell]
  18. program = "/bin/zsh"
  19. [window]
  20. decorations = "none"
  21. dynamic_padding = false
  22. dynamic_title = false
  23. opacity = 1
  24. option_as_alt = "Both"
  25. [bell]
  26. animation = "EaseOutExpo"
  27. duration = 100
  28. [mouse]
  29. hide_when_typing = true
  30. [colors.cursor]
  31. text = "CellBackground"
  32. [font]
  33. size = 11.5
  34. [font.normal]
  35. family = "JetBrainsMonoNL NF"
  36. style = "Regular"
  37. [font.bold]
  38. family = "JetBrainsMonoNL NF"
  39. style = "SemiBold"