feat: add statusline winhighlight to explorer tree (#326)
This commit is contained in:
@@ -22,7 +22,15 @@ M.View = {
|
|||||||
signcolumn = 'yes',
|
signcolumn = 'yes',
|
||||||
foldmethod = 'manual',
|
foldmethod = 'manual',
|
||||||
foldcolumn = '0',
|
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 = {
|
bufopts = {
|
||||||
swapfile = false,
|
swapfile = false,
|
||||||
|
|||||||
Reference in New Issue
Block a user