diff options
| author | Ahmed Khalf <[email protected]> | 2021-08-20 23:22:35 +0400 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-20 21:22:35 +0200 | 
| commit | 7845b671ecb8634684f2d38158938bfe65fc5b31 (patch) | |
| tree | a44c9b8158158c5f2430840225662a81c6ff98e6 /lua/core | |
| parent | 2bcbed14999f3c846028037c56ca855ef374d86c (diff) | |
Add show_hidden option to project module (#1359)
Diffstat (limited to 'lua/core')
| -rw-r--r-- | lua/core/project.lua | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/lua/core/project.lua b/lua/core/project.lua index 650f2924..6d7aa56e 100644 --- a/lua/core/project.lua +++ b/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, | 
