I install Yggdroot/indentLine
plugin in Vundle. And input :IndentLinesToggle in normal mode, but no use.
Then I input :version
, and find -conceal
, so this happens.
Yggdroot/indentLine
plugin must be useful in +conceal
in :version
.
I install Yggdroot/indentLine
plugin in Vundle. And input :IndentLinesToggle in normal mode, but no use.
Then I input :version
, and find -conceal
, so this happens.
Yggdroot/indentLine
plugin must be useful in +conceal
in :version
.
You could install Vim with Homebrew
brew install vim && brew link vim --force
Homebrew's Vim comes with +conceal
.
Check this with vim --version | grep conceal
— +conceal
means you have it build with your binary, -conceal
means that feature is not included in the binary.
To pick and choose what features you want in your Vim binary, you could always build from source. This allows you configure Vim to your liking