From 5733559ad24318ffaaf1abe66102222c7cef2a5f Mon Sep 17 00:00:00 2001 From: Ricard Illa Date: Wed, 2 Aug 2023 15:37:23 +0200 Subject: [PATCH] feat: added autopairs --- home/neovim/lua/plugins/autopairs.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 home/neovim/lua/plugins/autopairs.lua diff --git a/home/neovim/lua/plugins/autopairs.lua b/home/neovim/lua/plugins/autopairs.lua new file mode 100644 index 0000000..2c166be --- /dev/null +++ b/home/neovim/lua/plugins/autopairs.lua @@ -0,0 +1,5 @@ +return { + 'windwp/nvim-autopairs', + event = 'InsertEnter', + config = {}, +}