10 lines
147 B
Nix

{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [
nvim-surround
];
extraConfigLua = ''
require("nvim-surround").setup()
'';
}