Added nvim-surround

This commit is contained in:
EsVagy42 2025-03-02 17:31:20 +00:00
parent 477100a830
commit 698ce56ebf
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ {
# Import all your configuration modules here # Import all your configuration modules here
imports = [ ./lsp.nix ./lsp-format.nix ./which-key.nix ]; imports = [ ./lsp.nix ./lsp-format.nix ./which-key.nix ./surround.nix ];
opts = { opts = {
number = true; number = true;
relativenumber = true; relativenumber = true;

1
config/surround.nix Normal file
View file

@ -0,0 +1 @@
{ plugins = { nvim-surround = { enable = true; }; }; }