From b16dbaee8f60c36e1f48c740a11b8ef197b5527c Mon Sep 17 00:00:00 2001 From: John Novak Date: Mon, 31 May 2021 17:07:18 +1000 Subject: [PATCH] g:nvim_tree_show_icons doco fix (#407) --- doc/nvim-tree-lua.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/nvim-tree-lua.txt b/doc/nvim-tree-lua.txt index 7e3f9236..47785ab4 100644 --- a/doc/nvim-tree-lua.txt +++ b/doc/nvim-tree-lua.txt @@ -87,11 +87,11 @@ can disable icons per type: let g:nvim_tree_show_icons = { \ 'git': 1, \ 'folders': 1, - \ 'icons': 1 + \ 'files': 1 \} Can be one of `1` and `0` for each key. By default the tree will try -to render the icons. The `icons` key can only work if `nvim-web-devicons` +to render the icons. The `files` key can only work if `nvim-web-devicons` is installed and in your |runtimepath| (https://github.com/kyazdani42/nvim-web-devicons)