Nix-Hyprland/nixos/modules/nixvim/autocmds.nix
2024-04-17 05:52:14 +05:00

11 lines
142 B
Nix

{
programs.nixvim = {
autoCmd = [
{
event = [ "VimEnter" ];
command = ":TransparentEnable";
}
];
};
}