flake/nixos/nvim/plugins/autoclose.nix

11 lines
135 B
Nix
Raw Normal View History

2025-02-04 08:26:49 -06:00
{
programs.nixvim = {
plugins = {
nvim-autopairs = {
enable = true;
settings = { };
};
};
};
}