1

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.

Shao Kahn
  • 67
  • 2
  • 11
  • compile with those options. try this: https://gist.github.com/dcosson/3686437 (not tested) – Kent Jul 12 '18 at 08:32
  • https://stackoverflow.com/questions/21012203/how-can-i-install-macvim-on-os-x – phd Jul 12 '18 at 13:29
  • 1
    Install NeoVim or MacVim, both of them have it compiled in by default. MacVim in particular is a drop-in replacement for standard vim, you can `brew install macvim --with-override-system-vim`. – Amadan Jul 13 '18 at 04:08

1 Answers1

2

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

Igbanam
  • 5,904
  • 5
  • 44
  • 68