feat: add statusline winhighlight to explorer tree (#326)

This commit is contained in:
Akin
2021-04-20 18:59:32 +01:00
committed by GitHub
parent e3516eeb6e
commit 983963779d

View File

@@ -22,7 +22,15 @@ M.View = {
signcolumn = 'yes',
foldmethod = 'manual',
foldcolumn = '0',
winhl = 'EndOfBuffer:NvimTreeEndOfBuffer,Normal:NvimTreeNormal,CursorLine:NvimTreeCursorLine,VertSplit:NvimTreeVertSplit,SignColumn:NvimTreeNormal'
winhl = table.concat({
'EndOfBuffer:NvimTreeEndOfBuffer',
'Normal:NvimTreeNormal',
'CursorLine:NvimTreeCursorLine',
'VertSplit:NvimTreeVertSplit',
'SignColumn:NvimTreeNormal',
'StatusLine:NvimTreeStatusLine',
'StatusLineNC:NvimTreeStatuslineNC'
}, ',')
},
bufopts = {
swapfile = false,