vim: show hidden files when searching dotfiles with telescope

This commit is contained in:
Fernando Schauenburg 2022-07-04 22:33:38 +02:00
parent 8420604bf4
commit b03d7d016d
2 changed files with 6 additions and 0 deletions

5
.gitignore vendored
View file

@ -1,3 +1,8 @@
# The reason for having .git/ here is to make sure Telescope in neovim doesn't
# search inside the .git/ directory. This works because Telescope respects
# .gitignore.
.git/
config.local
config/nvim/plugin/packer_compiled.lua
config/zsh/.zcompdump

View file

@ -18,6 +18,7 @@ M.find_dotfiles = function()
builtin.find_files {
prompt_title = '  Find dotfiles ',
cwd = '~/.dotfiles',
hidden = true,
}
end