0
0

alacritty.toml 1.1 KB

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