From b46a37b4b240bec392fe9e18eaf1b3b9f2f1b1ed Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 1 Sep 2024 14:32:49 +0200 Subject: [PATCH] nvim/lua/user/plugins/ui/neotree.lua: fix icons. --- nvim/lua/user/plugins/ui/neotree.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/nvim/lua/user/plugins/ui/neotree.lua b/nvim/lua/user/plugins/ui/neotree.lua index 199b4ac..6512a54 100644 --- a/nvim/lua/user/plugins/ui/neotree.lua +++ b/nvim/lua/user/plugins/ui/neotree.lua @@ -49,20 +49,20 @@ return { show_scrolled_off_parent_node = false, -- boolean sources = { -- table { - source = "filesystem", -- string - display_name = " 󰉓 Files " -- string | nil + source = "filesystem", + display_name = " 󰉓 Files " }, { - source = "buffers", -- string - display_name = " 󰈚 Buffers " -- string | nil + source = "buffers", + display_name = "  Buffers " }, { - source = "git_status", -- string - display_name = " 󰊢 Git " -- string | nil + source = "git_status", + display_name = " 󰊢 Git " }, { - source = "document_symbols", -- string - display_name = " 󰊢 Docments " -- string | nil + source = "document_symbols", + display_name = "  Document Symbols " }, }, content_layout = "center",