this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(nvim): allow toggling hidden files in neo-tree, hide gitignored by default

this was causing me some issues with fuzzy finding, sice node_modules
results were cluttering up the results.

+3 -2
+3 -2
nvim/lua/plugins/ui.lua
··· 28 28 filesystem = { 29 29 filtered_items = { 30 30 hide_dotfiles = false, 31 - hide_gitignored = false, 31 + hide_gitignored = true, 32 32 }, 33 33 window = { 34 34 mappings = { 35 35 ["/"] = "noop", -- Disable filtering, I like to search on my own 36 - ["F"] = "fuzzy_finder", -- Remap filtering to F 36 + ["F"] = "fuzzy_finder", 37 37 ["H"] = "noop", -- Conflicts with prev buffer 38 + ["I"] = "toggle_hidden", 38 39 }, 39 40 }, 40 41 },