Reputation: 2671
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?
Upvotes: 0
Views: 185
Reputation: 4370
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'
Upvotes: 1