9 lines
172 B
Bash
Executable File
9 lines
172 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# bun
|
|
export BUN_INSTALL="$HOME/.bun"
|
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
|
|
|
# bun completions
|
|
[ -s "/home/antoxa/.bun/_bun" ] && source "/home/antoxa/.bun/_bun"
|