Created
May 5, 2024 07:30
-
-
Save gythialy/1487a907fdb60128b28578f352f4e719 to your computer and use it in GitHub Desktop.
`~/.config/alacritty/alacritty.toml` alacritty 配置
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import = [ | |
# uncomment the flavour you want below: | |
# "~/.config/alacritty/catppuccin-latte.toml", | |
# "~/.config/alacritty/catppuccin-frappe.toml" | |
# "~/.config/alacritty/catppuccin-macchiato.toml" | |
"~/.config/alacritty/catppuccin-mocha.toml", | |
"~/.config/alacritty/keybindings.toml", | |
] | |
live_config_reload = true | |
[env] | |
TERM = "xterm-256color" | |
ZELLIJ_AUTO_ATTACH = "true" | |
[colors] | |
draw_bold_text_with_bright_colors = false | |
[cursor.style] | |
shape = "Beam" | |
[font] | |
size = 15.0 | |
[font.bold] | |
family = "IosevkaTerm Nerd Font" | |
[font.bold_italic] | |
family = "IosevkaTerm Nerd Font" | |
[font.italic] | |
family = "IosevkaTerm Nerd Font" | |
[font.normal] | |
family = "IosevkaTerm Nerd Font" | |
style = "Regular" | |
[selection] | |
save_to_clipboard = true | |
[shell] | |
args = ["attach", "--create"] | |
program = "/opt/homebrew/bin/zellij" | |
[window] | |
decorations = "Transparent" | |
blur = true | |
opacity = 0.8 | |
[window.dimensions] | |
columns = 120 | |
lines = 45 | |
[window.padding] | |
x = 10 | |
y = 22 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment