Merge pull request #31 from alexdovzhanyn/master

Allow nvim-tree to have a transparent background pane
This commit is contained in:
Max Del Canto 2024-07-10 18:08:24 -03:00 committed by GitHub
commit edf520f017
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -665,7 +665,7 @@ M.set_highlight = function(colors, config)
nvim_set_hl('NvimTreeGitRenamed', { fg = colors.git_modified })
nvim_set_hl('NvimTreeGitNew', { fg = colors.git_added })
nvim_set_hl('NvimTreeGitDeleted', { fg = colors.git_removed })
nvim_set_hl('NvimTreeNormal', { fg = colors.base0, bg = colors.base04 })
nvim_set_hl('NvimTreeNormal', { fg = colors.base0, bg = colors.base04 }, config)
nvim_set_hl('NvimTreeNormalFloat', { link = 'NvimTreeNormal' })
nvim_set_hl('NvimTreeEndOfBuffer', { fg = colors.base04 })
nvim_set_hl('NvimTreeWinSeparator', { fg = colors.base04, bg = colors.base04 })