Files
NubNix/home-manager/20_alacritty/01_cursors-and-selection-colours.nix
2025-11-13 14:15:48 +00:00

14 lines
443 B
Nix

{ config, pkgs, lib, ... }:
{
home.file.".config/alacritty/01_cursors-and-selection-colours.toml".text = ''
# Cursor & Selection Colours
[colors.cursor]
cursor = "#528bff"
text = "#9cdef2"
[colors.selection]
text = "#9cdef2"
background = "#3e4451"
'';
}