SERVER-123755: Add fzf to devcontainer setup (#51501)

GitOrigin-RevId: 42959e7e173820a418ff4c4844b26771afa7e99c
This commit is contained in:
Jordi Olivares Provencio 2026-04-13 10:03:44 +02:00 committed by MongoDB Bot
parent ead640b2d2
commit 4b2fb33fde
2 changed files with 6 additions and 0 deletions

View File

@ -47,6 +47,7 @@
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers-community/features/bazel:1": {},
"ghcr.io/devcontainers-extra/features/fzf:1": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"moby": false
},

View File

@ -283,6 +283,11 @@ else
exit 1
fi
# Setup fzf bindings
echo "Setting up fzf bindings..."
echo 'eval "$(fzf --bash)"' >>"${HOME}/.bashrc"
echo 'source <(fzf --zsh)' >>"${HOME}/.zshrc"
echo ""
echo "MongoDB development container setup completed successfully!"
echo "Info: All infrastructure and dependencies are now configured and up to date."