diff options
Diffstat (limited to 'nvim/dot-config/nvim/lua/custom/plugins/autopairs.lua')
-rw-r--r-- | nvim/dot-config/nvim/lua/custom/plugins/autopairs.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/dot-config/nvim/lua/custom/plugins/autopairs.lua b/nvim/dot-config/nvim/lua/custom/plugins/autopairs.lua new file mode 100644 index 0000000..170b337 --- /dev/null +++ b/nvim/dot-config/nvim/lua/custom/plugins/autopairs.lua @@ -0,0 +1,9 @@ +return { + "windwp/nvim-autopairs", + event = "InsertEnter", + -- Optional dependency + dependencies = { "hrsh7th/nvim-cmp" }, + config = function() + require "custom.autopairs" + end, +} |