From 5ec3ad510bd8cbe647dbc9decae82aa8735a937e Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 19 Jul 2023 18:19:22 -0400 Subject: [PATCH] neovim: Add nvim-autopairs --- home/neovim.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/neovim.nix b/home/neovim.nix index f988305..ae95e0f 100644 --- a/home/neovim.nix +++ b/home/neovim.nix @@ -338,6 +338,11 @@ in plugin = plenary-nvim; type = "lua"; } + { + plugin = nvim-autopairs; + type = "lua"; + config = ''require("nvim-autopairs").setup {}''; + } { plugin = auto-save-nvim; type = "lua";