.dotfiles/.config/alacritty/alacritty.toml

29 lines
634 B
TOML

[general]
import = ["~/.config/alacritty/catppuccin-macchiato.toml"]
[env]
TERM = "xterm-256color"
XCURSOR_THEME = "Bibata-Modern-Classic"
[terminal]
shell = { program = "/home/wynd/.cargo/bin/nu", args = [] }
[window]
decorations = "None"
opacity = 1.0
blur = true
[font]
# normal = { family = "FiraCode Nerd Font", style = "Bold" }
normal = { family = "JetBrainsMonoNerdFont", style = "Regular" }
size = 12
[cursor]
style = { shape = "Block", blinking = "Always" }
[keyboard]
bindings = [
# This fixed a weird issue inside tmux with nvim where Ctrl + / wouldn't work
{ key = "Slash", mods = "Control", chars = "\u001f" },
]