mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
27 lines
661 B
Nix
27 lines
661 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
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},
|
||
|
})
|
||
|
''}
|
||
|
'';
|
||
|
};
|
||
|
}
|