configuration.nix/home/programs/helix.nix
2024-04-14 17:39:33 +05:30

17 lines
320 B
Nix

_: {
programs.helix = {
enable = true;
settings = {
theme = "dracula";
editor = {
line-number = "relative";
lsp.display-messages = true;
cursor-shape = {
insert = "bar";
select = "underline";
normal = "block";
};
};
};
};
}