vifm / vifm.vim

Vim plugin that allows use of vifm as a file picker
325 stars 18 forks source link

Indentlines #49

Closed twoeightdev closed 3 years ago

twoeightdev commented 3 years ago

hi, i have problem together with the plugin indentline it shows indentline in :TabVifm

indentlines

how can i disable this?

i tried:

let g:indentLine_fileTypeExclude = ['Vifm']
let g:vim_Vifm_conceal = 0

but it doesn't work.. for anyone can help, thank you.

Edit: i fix it by setting:

let g:indentLine_bufNameExclude = ["\[vifm\]*"]
ahmadie commented 3 years ago

or to disable any indentline for terminals

augroup terminalgrp autocmd TermOpen * nested :IndentLinesDisable augroup END