dotfiles/.config/nvim/lua/plugins/autopairs.lua
afranco 816b24b84e
chore: A bunch of things.
Themery for nvim, tmux theme, zsh stuff
2025-06-04 11:48:36 +01:00

10 lines
232 B
Lua

local Rule = require('nvim-autopairs.rule')
local npairs = require('nvim-autopairs')
npairs.setup({
map_cr = true,
map_bs = true,
check_ts = true,
enable_check_bracket_line = true,
ignored_next_char = "[%w]"
})