feat: Add Helix rendering whitespaces

This commit is contained in:
Sweetbread 2024-11-24 17:26:08 +03:00
parent 0f6c600e24
commit c754658646
4 changed files with 22 additions and 4 deletions

View File

@ -8,6 +8,7 @@
./yazi.nix ./yazi.nix
./ags.nix ./ags.nix
./zsh.nix ./zsh.nix
./helix.nix
./wms/wofi.nix ./wms/wofi.nix
./wms/mako.nix ./wms/mako.nix

View File

@ -0,0 +1,21 @@
{
programs.helix = {
enable = true;
defaultEditor = true;
settings = {
# theme = "catppuccin-mocha";
editor = {
whitespace.render = {
space = "all";
tab = "all";
nbsp = "none";
nnbsp = "none";
newline = "none";
};
indent-guides.render = true;
};
};
};
}

View File

@ -32,6 +32,4 @@
terminal = .5; terminal = .5;
}; };
}; };
xdg.configFile."helix/config.toml".text = ''theme = "catppuccin_mocha"'';
} }

View File

@ -37,6 +37,4 @@
terminal = .5; terminal = .5;
}; };
}; };
xdg.configFile."helix/config.toml".text = ''theme = "catppuccin_mocha"'';
} }