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;