autopairs.lua 184 B

123456789
  1. return {
  2. "windwp/nvim-autopairs",
  3. event = "InsertEnter",
  4. config = function()
  5. require("nvim-autopairs").setup({
  6. check_ts = true, -- Enable autopairs for treesitter
  7. })
  8. end,
  9. }