snowflake/modules/home/helix/helix.nix

23 lines
477 B
Nix
Raw Normal View History

2023-01-30 11:31:46 -05:00
{config, pkgs, inputs, ...}: {
programs.helix = {
enable = true;
# langauges = import ./languages.nix args;
settings = {
theme = "catppuccin_mocha";
editor = {
true-color = true;
color-modes = true;
cursorline = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
indent-guides = {
render = true;
rainbow = "dim";
};
};
};
};
}