16 lines
321 B
Lua
16 lines
321 B
Lua
return {
|
|
"windwp/nvim-autopairs",
|
|
cond = not vim.g.vscode,
|
|
lazy = true,
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"hrsh7th/nvim-cmp",
|
|
},
|
|
config = true,
|
|
opts = {
|
|
disable_in_macro = true,
|
|
disable_in_visualblock = true,
|
|
check_ts = true,
|
|
},
|
|
}
|