Skip to content

Commit

Permalink
Fixed issue with NvimTree
Browse files Browse the repository at this point in the history
  • Loading branch information
FrenzyExists committed Dec 1, 2021
1 parent 8115418 commit e1119b3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions colors/aquarium.vim
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,28 @@ if has('nvim')
" NvimTree
" > kyazdani42/nvim-tree.lua
call s:hi("NvimTreeExecFile", s:gui0B, "", "", "", "", "")
call s:hi("NvimTreeOpenedFile", s:gui0A, "", "", "", "bold", "")
call s:hi("NvimTreeSpecialFile", s:gui09, "", "", "", "italic", "")
call s:hi("NvimTreeMarkdownFile", s:gui09, "", "", "", "", "")
call s:hi("NvimTreeImageFile", s:gui0E, "", "", "", "", "")
call s:hi("NvimTreeRootFolder", s:gui0C, "", "", "", "italic", "")
call s:hi("NvimTreeFolderName", s:gui02, "", "", "", "", "")
call s:hi("NvimTreeFolderNormal", "", s:gui07, "", "", "", "")

hi! link LspDiagnosticsError Error
hi! link LspDiagnosticsWarning healthWarning
hi! link LspDiagnosticsInformation NvimTreeSpecialFile
hi! link LspDiagnosticsHint Label

call s:hi("NvimTreeGitDirty", s:gui08, "", "", "", "underline", "")
call s:hi("NvimTreeGitStaged", s:gui0B, "", "", "", "", "")
call s:hi("NvimTreeGitMerge", s:gui0C, "", "", "", "", "")

hi! link NvimTreeGitRenamed GitGutterChange
hi! link NvimTreeGitNew GitGutterAdd
hi! link NvimTreeGitDeleted GitGutterDelete

call s:hi("NvimTreeWindowPicker", s:gui03, "", "", "", "", "")

end

0 comments on commit e1119b3

Please sign in to comment.