dotfiles.nix/home/helix.nix

29 lines
602 B
Nix

{
programs.helix.enable = true;
programs.helix.settings = {
editor.bufferline = "multiple";
editor.color-modes = true;
editor.cursor-shape.insert = "bar";
editor.cursorline = true;
editor.indent-guides.render = true;
editor.indent-guides.skip-levels = 1;
editor.line-number = "relative";
editor.whitespace.render = {
space = "none";
tab = "all";
newline = "all";
};
};
programs.helix.extras.autoTheme = {
enable = true;
light = "rose_pine_dawn";
dark = "rose_pine";
};
home.sessionVariables = {
EDITOR = "hx";
};
}