Update the documentation/README.

This commit is contained in:
Phil Runninger
2020-02-06 13:01:04 -05:00
parent e41dd019d9
commit d706f40ae7
2 changed files with 15 additions and 4 deletions

View File

@@ -143,3 +143,8 @@ Use these variables in your vimrc. Note that below are default arrow symbols
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
```
You can remove the arrows altogether by setting these variables to empty strings, as shown below. This will remove not only the arrows, but a single space following them, shifting the whole tree two character positions to the left.
```vim
let g:NERDTreeDirArrowExpandable = ''
let g:NERDTreeDirArrowCollapsible = ''
```