mirror of
https://github.com/Manoj-HV30/i3wm-ubuntu-dotfiles.git
synced 2026-05-16 19:35:23 +00:00
12 lines
249 B
Lua
12 lines
249 B
Lua
return {
|
|
"windwp/nvim-autopairs",
|
|
event = "InsertEnter",
|
|
config = function()
|
|
require("nvim-autopairs").setup({
|
|
check_ts = true, -- use Treesitter (smarter)
|
|
disable_filetype = { "TelescopePrompt", "vim" },
|
|
})
|
|
end,
|
|
}
|
|
|