mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-25 04:48:03 +00:00
20 lines
411 B
Nix
20 lines
411 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
cfg = config.vim.autopairs.nvim-autopairs;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
startPlugins = ["nvim-autopairs"];
|
|
pluginRC.autopairs = entryAnywhere ''
|
|
require('nvim-autopairs').setup(${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
};
|
|
}
|