Configure alacritty more

This commit is contained in:
edwark43 2024-01-03 14:52:34 +00:00
parent ac7b2b6d62
commit c669a1140d
3 changed files with 76 additions and 37 deletions

View File

@ -1,3 +1,5 @@
import = ["~/.config/alacritty/onedark.toml", "~/.config/alacritty/font.toml"]
live_config_reload = true
[window]
@ -10,45 +12,21 @@ dynamic_title = true
history = 10000
multiplier = 3
[font]
normal = { family = "JetBrainsMono NF"}
bold = { family = "JetBrainsMono NF"}
italic = { family = "JetBrainsMono NF"}
bold_italic = { family = "JetBrainsMono NF"}
size = 10
[colors.primary]
foreground = "#b8bfe5"
background = "#1f2329"
[colors.cursor]
cursor = "#465b80"
text = "#e5e5e5"
[colors.normal]
black = "#0f1319"
red = "#644d66"
green = "#375759"
yellow = "#736871"
blue = "#3f5273"
magenta = "#543f66"
cyan = "#324f66"
white = "#b3b3b3"
[colors.bright]
black = "#b3b3b3"
red = "#735771"
green = "#3f6566"
yellow = "#807476"
blue = "#465b80"
magenta = "#533969"
cyan = "#385a73"
white = "#e5e5e5"
[bell]
animation = "Linear"
duration = 50
color = "#3f6566"
command = { program = "paplay", args = ["/usr/share/sounds/freedesktop/stereo/dialog-error.oga"] }
[selection]
save_to_clipboard = false
[cursor]
style = { Block, On }
blink_interval = 550
unfocused_hollow = false
style = { Block, Off }
vi_mode_style = { Block, On }
blink_interval = 1000
blink_timeout = 0
unfocused_hollow = false
[mouse]
hide_when_typing = true

View File

@ -0,0 +1,14 @@
[font]
size = 10
[font.normal]
family = "JetBrainsMono NF"
[font.bold]
family = "JetBrainsMono NF"
[font.italic]
family = "JetBrainsMono NF"
[font.bold_italic]
family = "JetBrainsMono NF"

View File

@ -0,0 +1,47 @@
[colors.primary]
foreground = "#b8bfe5"
background = "#1f2329"
[colors.cursor]
text = "#e5e5e5"
cursor = "#465b80"
[colors.vi_mode_cursor]
text = "#e5e5e5"
cursor = "#685b80"
[colors.search.matches]
foreground = "#1f2329"
background = "#644d66"
[colors.search.focused_match]
foreground = "#1f2329"
background = "#736871"
[colors.hints.start]
foreground = "#1f2329"
background = "#736871"
[colors.hints.end]
foreground = "#1f2329"
background = "#644d66"
[colors.normal]
black = "#0f1319"
red = "#644d66"
green = "#375759"
yellow = "#736871"
blue = "#3f5273"
magenta = "#543f66"
cyan = "#324f66"
white = "#b3b3b3"
[colors.bright]
black = "#b3b3b3"
red = "#735771"
green = "#3f6566"
yellow = "#807476"
blue = "#465b80"
magenta = "#533969"
cyan = "#385a73"
white = "#e5e5e5"