You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
515 B
24 lines
515 B
{ config, ... }:
|
|
let
|
|
inherit (config) colorscheme;
|
|
in
|
|
{
|
|
home.sessionVariables.COLORTERM = "truecolor";
|
|
programs.helix = {
|
|
enable = true;
|
|
settings = {
|
|
theme = colorscheme.slug;
|
|
editor = {
|
|
color-modes = true;
|
|
line-number = "relative";
|
|
indent-guides.render = true;
|
|
cursor-shape = {
|
|
normal = "block";
|
|
insert = "bar";
|
|
select = "underline";
|
|
};
|
|
};
|
|
};
|
|
themes = import ./theme.nix { inherit colorscheme; };
|
|
};
|
|
}
|
|
|