about summary refs log tree commit diff
path: root/.config/nvim/lua/plugins/autopairs.lua
blob: c37e3011a8ed39e26aff254713edcd18a9193515 (plain)
1
2
3
4
5
6
7
8
return {
  "windwp/nvim-autopairs",
  config = function()
    require("nvim-autopairs").setup({
      disable_filetype = { "TelescopePrompt" , "vim" }
    })
  end,
}