dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 8aa443e676e6451cf7336cc2c13d1657e19e061f
parent 201d97651d69ebd0afeaa2b4b731fa0d5468d8b1
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 23 May 2025 13:18:01 -0700

alacritty: migrate to latest config, use monospace

Diffstat:
M.config/alacritty/alacritty.toml | 14++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml @@ -1,14 +1,10 @@ -import = [ - # Colour scheme. - "~/.config/alacritty/solarized-osaka.toml", -] [env] TERM = "xterm-256color" [font] -normal = { family = "SF Mono", style = "Regular" } -size = 14.0 +normal = { family = "monospace", style = "Regular" } +size = 12.0 [[hints.enabled]] command = "xdg-open" @@ -38,3 +34,9 @@ key = "¥" chars="¥" key = "¥" mods = "Alt" + +[general] +import = [ + # Colour scheme. + "~/.config/alacritty/solarized-osaka.toml", +]