configuration.nix/home/programs/helix.nix

18 lines
320 B
Nix
Raw Normal View History

2024-04-14 13:36:12 +05:30
_: {
programs.helix = {
enable = true;
settings = {
theme = "dracula";
2024-04-14 14:03:52 +05:30
editor = {
line-number = "relative";
lsp.display-messages = true;
cursor-shape = {
insert = "bar";
select = "underline";
normal = "block";
};
};
2024-04-14 13:36:12 +05:30
};
};
}