| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
- # alacritty.toml
- #
- # Docs:
- # * https://alacritty.org/config-alacritty.html
- #
- # Configured for MacOS, tmux, and Neovim.
- ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
- # https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd
- general.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"
- [terminal.shell]
- program = "/bin/zsh"
- args = ["--login", "-c", "~/.scripts/terminal_launch.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"
|