Files
dotfiles/.config/nvim/lua/plugins/nvim-autopairs.lua
Kyren223 4d6f3f1d38 Removed nvim-java, will re-add when I do java, removed code playground
bcz I won't use it and removed a fixme bcz past me said to remove it but
idk if I should've removed it
2025-05-01 18:40:55 +03:00

11 lines
215 B
Lua

return {
'windwp/nvim-autopairs',
event = 'InsertEnter',
opts = {
check_ts = true,
ts_config = {
lua = { 'string' }, -- don't add pairs inside lua strings
},
},
}