feat: configure helix in nix
This commit is contained in:
parent
cd691ebfce
commit
c9e15a7bed
2 changed files with 23 additions and 0 deletions
23
modules/home/helix/helix.nix
Normal file
23
modules/home/helix/helix.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{config, pkgs, inputs, ...}: {
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
# langauges = import ./languages.nix args;
|
||||
settings = {
|
||||
theme = "catppuccin_mocha";
|
||||
editor = {
|
||||
true-color = true;
|
||||
color-modes = true;
|
||||
cursorline = true;
|
||||
cursor-shape = {
|
||||
insert = "bar";
|
||||
normal = "block";
|
||||
select = "underline";
|
||||
};
|
||||
indent-guides = {
|
||||
render = true;
|
||||
rainbow = "dim";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue