Browse Source

Add show_hidden option to project module (#1359)

Ahmed Khalf 3 years ago
parent
commit
7845b671ec
1 changed files with 3 additions and 0 deletions
  1. 3 0
      lua/core/project.lua

+ 3 - 0
lua/core/project.lua

@@ -20,6 +20,9 @@ function M.config()
     -- detection_methods
     patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },
 
+    -- Show hidden files in telescope
+    show_hidden = false,
+
     -- When set to false, you will get a message when project.nvim changes your
     -- directory.
     silent_chdir = true,