Skip to content

Commit

Permalink
fix(nvim): Hide .direnv directory in mini.files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Jul 26, 2023
1 parent e549241 commit 62b85ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvim/lua/my/configure/mini_files.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ return {
opts = {
content = {
filter = function(entry)
return entry.name ~= '.DS_Store' and entry.name ~= '.git'
return entry.name ~= '.DS_Store' and entry.name ~= '.git' and entry.name ~= '.direnv'
end,
},
mappings = {
Expand Down

0 comments on commit 62b85ff

Please sign in to comment.