Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/global_tools/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Let's assume there's a C++ package we'd like to install globally from source.
First, it needs to have a package manifest:

```toml title="pixi.toml"
[package]
[package]
name = "cpp_math"
version = "0.1.0"

Expand Down Expand Up @@ -152,7 +152,9 @@ You can then load the completions in the startup script of your shell:

```bash title="~/.bashrc"
# bash, default on most Linux distributions
source ~/.pixi/completions/bash/*
for file in ~/.pixi/completions/bash/*; do
[ -e "$file" ] && source "$file"
done
```

```zsh title="~/.zshrc"
Expand Down