Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
nerdtree 或 fzf 都会忽略 .env,我的工作文件夹中有一个 .env,但我在 fzf 和 nerdtree 中都找不到它。
这是我的 vimrc: https ://github.com/dipzera/nvim
对于 NERDTree,请尝试
let NERDTreeShowHidden=1
对于 fzf,这取决于您正在运行的命令/是否使用agor rg,但您需要在参数中添加“隐藏”标志。例如,
ag
rg
let $FZF_DEFAULT_COMMAND='find -L'
将使:FZF您能够使用find. 您需要修改它以使用您喜欢的任何程序。我相信你也可以在你的.bashrc而不是你的中设置这个变量,init.vim但这取决于你。
:FZF
find
.bashrc
init.vim