From a48a04c08c96f25ebe67b3b5b41eb0914835510f Mon Sep 17 00:00:00 2001 From: EsVagy42 Date: Sun, 2 Mar 2025 17:39:06 +0000 Subject: [PATCH] Added nvim-autopairs --- config/autopairs.nix | 7 +++++++ config/default.nix | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 config/autopairs.nix diff --git a/config/autopairs.nix b/config/autopairs.nix new file mode 100644 index 0000000..e42336d --- /dev/null +++ b/config/autopairs.nix @@ -0,0 +1,7 @@ +{ + plugins = { + nvim-autopairs = { + enable = true; + }; + }; +} diff --git a/config/default.nix b/config/default.nix index bf6962b..6a5d9d3 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,6 +1,12 @@ { # Import all your configuration modules here - imports = [ ./lsp.nix ./lsp-format.nix ./which-key.nix ./surround.nix ]; + imports = [ + ./lsp.nix + ./lsp-format.nix + ./which-key.nix + ./surround.nix + ./autopairs.nix + ]; opts = { number = true; relativenumber = true;