From 698ce56ebfd403838faec4ef2c47e904faca4be4 Mon Sep 17 00:00:00 2001 From: EsVagy42 Date: Sun, 2 Mar 2025 17:31:20 +0000 Subject: [PATCH] Added nvim-surround --- config/default.nix | 2 +- config/surround.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 config/surround.nix diff --git a/config/default.nix b/config/default.nix index 05e99c5..bf6962b 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,6 +1,6 @@ { # 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 = { number = true; relativenumber = true; diff --git a/config/surround.nix b/config/surround.nix new file mode 100644 index 0000000..afaf7d9 --- /dev/null +++ b/config/surround.nix @@ -0,0 +1 @@ +{ plugins = { nvim-surround = { enable = true; }; }; }