diff options
author | Pascal Hubrecht <[email protected]> | 2022-04-21 23:17:24 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-22 01:47:24 +0430 |
commit | 75cfebbfeea3bfa1437e019812747ab7fe3dd25e (patch) | |
tree | 67c96dbe8462f0aa123fe0678a8cef1f1424cbcf /lua/lvim/core/nvimtree.lua | |
parent | 0481ec8dddf4bd8ed81c10ae98807fec97f6f872 (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.lua | 2 |
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", |