mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
27 lines
692 B
Nix
27 lines
692 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf nvim optionalString boolToString;
|
|
|
|
cfg = config.vim.autopairs;
|
|
in {
|
|
config =
|
|
mkIf (cfg.enable)
|
|
{
|
|
vim.startPlugins = ["nvim-autopairs"];
|
|
|
|
vim.luaConfigRC.autopairs = nvim.dag.entryAnywhere ''
|
|
require("nvim-autopairs").setup{}
|
|
${optionalString (config.vim.autocomplete.type == "nvim-compe") ''
|
|
require('nvim-autopairs.completion.compe').setup({
|
|
map_cr = ${boolToString cfg.nvim-compe.map_cr},
|
|
map_complete = ${boolToString cfg.nvim-compe.map_complete},
|
|
auto_select = ${boolToString cfg.nvim-compe.auto_select},
|
|
})
|
|
''}
|
|
'';
|
|
};
|
|
}
|