indentLine と precious.vim を組みわせる

コンテキストによって動的に filetype を変更を行う precious.vim なんですが、indentLine と相性が悪く、filetype が切り替わるたびに indentLine のハイライトが消されてしまいます。
これを回避する場合は以下のようにして precious.vim が filetype を切り替えるたびに indetLine が有効になるように設定します。

augroup precious-indentline
    autocmd!
    " filetype が切り替わるたびに indetLine をリセットする
    autocmd User PreciousFileType IndentLinesReset
augroup END


これで precious.vim が filetype を切り替えても indetLine の設定が反映されるようになります。