settei/wrappers/helix/default.nix
Nikodem Rabuliński fb0c1a4451
Big readme update and more
Updated readme with tons of information.
Made kazuki a hercules agent.
Fixed secrets ownerships.
Started working on a custom installer iso.
Changed helix theme.
2023-09-16 21:51:35 +02:00

45 lines
847 B
Nix

{
pkgs,
lib,
...
}: {
programs.helix = {
enable = true;
settings = {
editor = {
true-color = true;
line-number = "relative";
mouse = false;
cursor-shape.insert = "bar";
color-modes = true;
cursorline = true;
auto-save = true;
indent-guides.render = true;
theme = "base16_default_dark";
};
};
languages = {
language = [
{
name = "koka";
scope = "scope.koka";
file-types = ["kk"];
roots = [];
indent = {
tab-width = 4;
unit = " ";
};
}
{
name = "racket";
indent = {
tab-width = 2;
unit = " ";
};
}
];
};
};
wrappers.helix.pathAdd = [pkgs.nil];
}