diff --git a/init.lua b/init.lua index 51f6eb5c..9422bca7 100644 --- a/init.lua +++ b/init.lua @@ -362,6 +362,14 @@ require('lazy').setup({ }, }, + { -- Autopair plugin (e.g. automatically pair open/close parens) + 'windwp/nvim-autopairs', + event = 'InsertEnter', + config = true, + -- use opts = {} for passing setup options + -- this is equivalent to setup({}) function + }, + -- NOTE: Plugins can specify dependencies. -- -- The dependencies are proper plugin specifications as well - anything