How do you auto-close brackets and quotes in Neovim?
require('nvim-autopairs').setup()
nvim-autopairs automatically inserts matching closing brackets, quotes, and tags as you type.
require('nvim-autopairs').setup()
nvim-autopairs automatically inserts matching closing brackets, quotes, and tags as you type.
set showmatch
Enable showmatch to briefly highlight the matching bracket when you type a closing bracket.
%
The % command jumps to the matching bracket, parenthesis, or brace.