From 29d46c579018fd612189b6a212ca947a368bf276 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 27 Apr 2023 15:29:27 +0300 Subject: [PATCH] Feat: nvim neo-tree configuration --- config/astronvim/lua/user/plugins/core.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/config/astronvim/lua/user/plugins/core.lua b/config/astronvim/lua/user/plugins/core.lua index 25bfd07..bcd8b01 100644 --- a/config/astronvim/lua/user/plugins/core.lua +++ b/config/astronvim/lua/user/plugins/core.lua @@ -36,6 +36,27 @@ return { luasnip.filetype_extend("javascript", { "javascriptreact" }) end, }, + { + "nvim-neo-tree/neo-tree.nvim", + opts = function(_, opts) + require "plugins.neo-tree" + opts.filesystem.filtered_items = { + visible = false, + show_hidden_count = true, + hide_dotfiles = false, + hide_gitignored = true, + hide_by_name = { + }, + never_show = { + '.git', + '.DS_Store', + 'thumbs.db' + }, + } + + return opts + end, + }, -- { -- "windwp/nvim-autopairs", -- config = function(plugin, opts)