nv/config/utils/nvim-surround.nix

10 lines
148 B
Nix
Raw Normal View History

2024-03-06 14:10:37 +00:00
{ pkgs, ... }:
{
extraPlugins = with pkgs.vimPlugins; [
nvim-surround
];
extraConfigLua = ''
require("nvim-surround").setup()
'';
}