alacritty: Move to TOML configuration

This commit is contained in:
Alex Palaistras 2024-01-05 15:12:25 +00:00
parent d9853a79e0
commit 3e70f5cb5e
2 changed files with 48 additions and 50 deletions

View File

@ -0,0 +1,48 @@
[colors]
draw_bold_text_with_bright_colors = false
[colors.bright]
black = "0x585858"
blue = "0xb8b8b8"
cyan = "0xa16946"
green = "0x282828"
magenta = "0xe8e8e8"
red = "0xdc9656"
white = "0xf8f8f8"
yellow = "0x383838"
[colors.cursor]
cursor = "0xd8d8d8"
text = "0x181818"
[colors.normal]
black = "0x181818"
blue = "0x7cafc2"
cyan = "0x86c1b9"
green = "0xa1b56c"
magenta = "0xba8baf"
red = "0xab4642"
white = "0xd8d8d8"
yellow = "0xf7ca88"
[colors.primary]
background = "0x2d2d2d"
foreground = "0xd8d8d8"
[font]
size = 19
[font.normal]
family = "Iosevka"
[shell]
args = ["--login"]
program = "/usr/bin/fish"
[window]
decorations = "none"
decorations_theme_variant = "Dark"
[window.padding]
x = 20
y = 20

View File

@ -1,50 +0,0 @@
window:
decorations: none
decorations_theme_variant: Dark
padding:
x: 20
y: 20
font:
size: 19
normal:
family: Iosevka
draw_bold_text_with_bright_colors: false
colors:
# Default colors
primary:
background: '0x2d2d2d'
foreground: '0xd8d8d8'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x181818'
cursor: '0xd8d8d8'
# Normal colors
normal:
black: '0x181818'
red: '0xab4642'
green: '0xa1b56c'
yellow: '0xf7ca88'
blue: '0x7cafc2'
magenta: '0xba8baf'
cyan: '0x86c1b9'
white: '0xd8d8d8'
# Bright colors
bright:
black: '0x585858'
red: '0xdc9656'
green: '0x282828'
yellow: '0x383838'
blue: '0xb8b8b8'
magenta: '0xe8e8e8'
cyan: '0xa16946'
white: '0xf8f8f8'
shell:
program: /usr/bin/fish
args:
- --login