neovim-flake/modules/plugins/autopairs/nvim-autopairs/config.nix

20 lines
412 B
Nix
Raw Normal View History

{
config,
lib,
...
}: let
inherit (lib.modules) mkIf;
inherit (lib.trivial) boolToString;
2024-02-17 14:13:52 +01:00
inherit (lib.nvim.dag) entryAnywhere;
cfg = config.vim.autopairs;
in {
config = mkIf cfg.enable {
vim.startPlugins = ["nvim-autopairs"];
vim.pluginRC.autopairs = entryAnywhere ''
require("nvim-autopairs").setup({ map_cr = ${boolToString (!config.vim.autocomplete.enable)} })
'';
};
}