Search code examples
vimsyntastic

Is there any way to access a Syntastic checker that is not in PATH?


I am trying to get tsqllint working with Syntastic in Vim. I am on a shared system with no root privileges. I was able to get tsqllint installed locally and working outside of the PATH. Is there a way to point Syntastic to its location?


Solution

  • You can add things to your path in your .vimrc. For example, I have a locally installed flawfinder, so I put this in my .vimrc:

    let $PATH.=':' . $HOME . '/flawfinder/bin'