Home

Disable Parenthesis Matching In Neovim

I switched to using [TODO: Code shorthand span ] for my Neovim config. The way to disable standard-plugins1 is a little different that what I had before. To turn off the highlighting of matching parenthesis I added this towards the top of my config file:

vim.g.loaded_matchparen = 1

It was lower down in the kickstart config2 I'm now using as my foundation. It didn't work for me until I moved it higher.

Prior Version

For reference, the version from my original [TODO: Code shorthand span ] init file had was:

:let loaded_matchparen = 1
~ fin ~

Footnotes

References