zsh-interactive-cd: add option to include hidden directories

Signed-off-by: Surya <SuryaGopisetty30@gmail.com>
This commit is contained in:
Surya 2025-09-21 22:00:08 +05:30
commit b25811450c
2 changed files with 26 additions and 11 deletions

View file

@ -19,3 +19,14 @@ This plugin provides an interactive way to change directories in zsh using fzf.
## Usage
Press tab for completion as usual, it'll launch fzf automatically. Check fzfs [readme](https://github.com/junegunn/fzf#search-syntax) for more search syntax usage.
### Hidden Directories
By default, `zsh-interactive-cd` hides directories that start with `.` (dotfolders).
You can enable hidden directories in the suggestion list by setting:
```zsh
# Show hidden directories in interactive cd
export ZIC_SHOW_HIDDEN=true
```