Adding something like the following would enable users to disable the plugin by setting a single variable in their .vimrc. It would also prevent the plugin from attempting to load twice.
if exists("g:BetterCSSSyntaxforVim")
finish
endif
let g:BetterCSSSyntaxforVim = "1"
Adding something like the following would enable users to disable the plugin by setting a single variable in their .vimrc. It would also prevent the plugin from attempting to load twice.