Skip to content

Commit

Permalink
Udpate NvimTree filters
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasvianav committed Jun 21, 2022
1 parent c33c37a commit a4a8873
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lua/v/plugins/navigation/nvim-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ nvim_tree.setup({
'MAKEFILE',
'Makefile',
'README.md',
'.gitignore',
'package.json',
},
},
Expand All @@ -111,17 +112,16 @@ nvim_tree.setup({

-- dirs/files to be ignored
custom = {
'.git',
'node_modules',
'.cache',
'__pycache__',
'.DS_Store',
'package-lock.json',
'^\\.git$',
'^node_modules$',
'^\\.cache$',
'^__pycache__$',
'^.DS_Store$',
'^package-lock\\.json$',
},
},
})


require('v.utils.mappings').map('n', '<Leader>e', require('v.utils.tree').nvim_tree_toggle)

local colors = require('v.utils').colors
Expand Down

0 comments on commit a4a8873

Please sign in to comment.