summaryrefslogtreecommitdiffstats
path: root/nixos/modules/nixvim/autocmds.nix
blob: 4fca3341554c0b43c994a8ce178035dab5fd0319 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  programs.nixvim = {
    autoCmd = [
      {
        event = [ "VimEnter" ];
        command = ":TransparentEnable";
      }
    ];
  };
}