summaryrefslogtreecommitdiff
path: root/lua/lvim/core/nvimtree.lua
diff options
context:
space:
mode:
authorPascal Hubrecht <[email protected]>2022-04-21 23:17:24 +0200
committerGitHub <[email protected]>2022-04-22 01:47:24 +0430
commit75cfebbfeea3bfa1437e019812747ab7fe3dd25e (patch)
tree67c96dbe8462f0aa123fe0678a8cef1f1424cbcf /lua/lvim/core/nvimtree.lua
parent0481ec8dddf4bd8ed81c10ae98807fec97f6f872 (diff)
fix(nvimtree): escape the dot character in custom filter (#2493)
Diffstat (limited to 'lua/lvim/core/nvimtree.lua')
-rw-r--r--lua/lvim/core/nvimtree.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/nvimtree.lua b/lua/lvim/core/nvimtree.lua
index bcdf963d..33d5fce8 100644
--- a/lua/lvim/core/nvimtree.lua
+++ b/lua/lvim/core/nvimtree.lua
@@ -68,7 +68,7 @@ function M.config()
},
filters = {
dotfiles = false,
- custom = { "node_modules", ".cache" },
+ custom = { "node_modules", "\\.cache" },
},
trash = {
cmd = "trash",