vim: show hidden files when searching dotfiles with telescope
This commit is contained in:
parent
8420604bf4
commit
b03d7d016d
2 changed files with 6 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -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.local
|
||||||
config/nvim/plugin/packer_compiled.lua
|
config/nvim/plugin/packer_compiled.lua
|
||||||
config/zsh/.zcompdump
|
config/zsh/.zcompdump
|
||||||
|
|
|
@ -18,6 +18,7 @@ M.find_dotfiles = function()
|
||||||
builtin.find_files {
|
builtin.find_files {
|
||||||
prompt_title = ' Find dotfiles ',
|
prompt_title = ' Find dotfiles ',
|
||||||
cwd = '~/.dotfiles',
|
cwd = '~/.dotfiles',
|
||||||
|
hidden = true,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue