nixos-config/home/afoucaultc/packages/neovim/plugins/snacks.nix
2026-08-20 13:20:05 +02:00

11 lines
301 B
Nix

{ ... }:
{
programs.nixvim.plugins.snacks = {
enable = true;
settings = {
bigfile.enabled = true; # gère proprement les très gros fichiers
quickfile.enabled = true; # affichage plus rapide au démarrage
indent.enabled = true; # guides d'indentation visuels
};
};
}