snowflake/modules/home/helix/helix.nix
2023-01-30 11:31:46 -05:00

23 lines
No EOL
477 B
Nix

{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";
};
};
};
};
}