Changed how NvimTree displays items

This commit is contained in:
Dreaded_X 2022-02-08 04:13:03 +01:00
parent eba93c0f1c
commit 9f0048bfb2
Signed by: Dreaded_X
GPG Key ID: 76BDEC4E165D8AD9

View File

@ -1,14 +1,19 @@
let g:nvim_tree_show_icons = { let g:nvim_tree_show_icons = {
\ 'git': 1, \ 'git': 0,
\ 'folders': 1, \ 'folders': 1,
\ 'files': 1, \ 'files': 0,
\ 'folder_arrows': 1, \ 'folder_arrows': 0,
\ } \ }
let g:nvim_tree_icons = { let g:nvim_tree_icons = {
\ 'default': '',
\ 'folder': { \ 'folder': {
\ 'arrow_open': "", \ 'arrow_open': "",
\ 'arrow_closed': "", \ 'arrow_closed': "",
\ 'default': "",
\ 'open': "",
\ 'empty': "",
\ 'empty_open': "",
\ 'symlink': "",
\ 'symlink_open': "",
\ } \ }
\ } \ }
lua require('plugins') lua require('plugins')