| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
- # alacritty.toml
- #
- # Docs:
- # * https://alacritty.org/config-alacritty.html
- #
- ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
- # https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd
- import = [
- # Keybinding fixes for MacOS
- "~/.config/alacritty/alacritty-fixed-mac-keyboard-bindings.toml",
- # Color scheme: expected to be automatically generated
- "~/.config/alacritty/.theme.toml",
- ]
- [env]
- TERM = "alacritty"
- [shell]
- program = "/bin/zsh"
- [window]
- decorations = "none"
- dynamic_padding = false
- dynamic_title = false
- opacity = 1
- option_as_alt = "Both"
- [bell]
- animation = "EaseOutExpo"
- duration = 100
- [mouse]
- hide_when_typing = true
- [colors.cursor]
- text = "CellBackground"
- [font]
- size = 11.5
- [font.normal]
- family = "JetBrainsMonoNL NF"
- style = "Regular"
- [font.bold]
- family = "JetBrainsMonoNL NF"
- style = "SemiBold"
|