neovim-flake/modules/utility/surround/config.nix

20 lines
296 B
Nix
Raw Normal View History

2023-06-07 13:28:27 +02:00
{
config,
lib,
...
}:
with lib;
with builtins; let
cfg = config.vim.utility.surround;
in {
config = mkIf (cfg.enable) {
vim.startPlugins = [
"nvim-surround"
];
vim.luaConfigRC.surround = nvim.dag.entryAnywhere ''
require('nvim-surround').setup()
'';
};
}