8000 fix(bash-export): Show hidden files, directories in fzf · musq/dotfiles@ee82c80 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit ee82c80

Browse files
committed
fix(bash-export): Show hidden files, directories in fzf
1 parent eef72e5 commit ee82c80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shell/bash_exports

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export FZF_PREVIEW=1
4444
# Set default fzf command
4545

4646
if cmd_exists "fd"; then
47-
export FZF_DEFAULT_COMMAND='fd --type f --color=never'
47+
export FZF_DEFAULT_COMMAND='fd --type f --hidden --color=never'
4848
else
4949
export FZF_DEFAULT_COMMAND='find * -type f'
5050
fi
@@ -54,7 +54,7 @@ fi
5454
# Change to a fuzzy found sub-directory
5555

5656
if cmd_exists "fd"; then
57-
export FZF_ALT_C_COMMAND='fd --type d . --color=never'
57+
export FZF_ALT_C_COMMAND='fd --type d --hidden --color=never'
5858
else
5959
export FZF_ALT_C_COMMAND='find * -type d'
6060
fi

0 commit comments

Comments
 (0)
0