17 lines
320 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|