fix: Corrected the overzealous exclusion of files with git or

`node_modules` in their names and instead excluding files in those
directories specifically
This commit is contained in:
Finch 2024-05-07 15:13:51 -05:00
parent 96cc292a2a
commit fcec9d54ec

View File

@ -100,8 +100,8 @@ return {
no_ignore = false,
hidden = true,
file_ignore_patterns = {
'.git',
'.node_modules',
'.git/',
'.node_modules/',
},
})
end,