feat(users/Profpatsch/alacritty): Some more configuration

Change-Id: Ibb2e1892327bd1f27a16dcde1424b8d55c7783d2
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5479
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
This commit is contained in:
Profpatsch 2022-04-19 15:08:14 +02:00
parent 70779f4e65
commit ea871fdcd7
2 changed files with 28 additions and 12 deletions

View file

@ -1,11 +1,17 @@
let sol = (./solarized.dhall).hex
let solarized-dark =
let black = "#000000"
let white = "#ffffff"
let
-- todo: this looks not too good
solarized-dark =
{ --Colors (Solarized Dark)
colors =
{ -- Default colors
primary =
{ background = sol.base03, foreground = sol.base0 }
{ background = black, foreground = white }
, -- Cursor colors
cursor =
{ text = sol.base03, cursor = sol.base0 }
@ -34,4 +40,9 @@ let solarized-dark =
}
}
in { font.size = 12 } // solarized-dark
in { alacritty-config = { font.size = 18, scolling.history = 100000 }
, -- This disables the dpi-sensitive scaling (cause otherwise the font will be humongous on my laptop screen)
alacritty-env
. WINIT_X11_SCALE_FACTOR
= 1
}