Nix-Hyprland/nixos/modules/nixvim/autocmds.nix

11 lines
142 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
programs.nixvim = {
autoCmd = [
{
event = [ "VimEnter" ];
command = ":TransparentEnable";
}
];
};
}