Files
nvim/lua/plugins/tabout.lua

20 lines
467 B
Lua
Raw Normal View History

2025-10-14 19:48:29 +11:00
return {
{
"kawre/neotab.nvim",
event = "InsertEnter",
opts = {
-- configuration goes here
2025-10-17 20:03:30 +11:00
pairs = { ---@type ntab.pair[]
{ open = "(", close = ")" },
{ open = "[", close = "]" },
{ open = "{", close = "}" },
{ open = "'", close = "'" },
{ open = '"', close = '"' },
{ open = "`", close = "`" },
{ open = "<", close = ">" },
{ open = "$", closed = "$" },
}
2025-10-14 19:48:29 +11:00
},
},
}