Compare commits
2 commits
35db636323
...
916ce1b0ba
Author | SHA1 | Date | |
---|---|---|---|
916ce1b0ba | |||
5d23212904 |
2 changed files with 14 additions and 1 deletions
|
@ -59,7 +59,6 @@ icons:
|
||||||
# A list of globs to ignore when listing.
|
# A list of globs to ignore when listing.
|
||||||
ignore-globs:
|
ignore-globs:
|
||||||
- .git
|
- .git
|
||||||
- node_modules
|
|
||||||
|
|
||||||
# == Indicators ==
|
# == Indicators ==
|
||||||
# Whether to add indicator characters to certain listed files.
|
# Whether to add indicator characters to certain listed files.
|
||||||
|
|
14
lib/env.zsh
14
lib/env.zsh
|
@ -109,3 +109,17 @@ if [ -d "$HOME/.pkgs/google-cloud-sdk" ]; then
|
||||||
source /home/daylin/.pkgs/google-cloud-sdk/completion.zsh.inc
|
source /home/daylin/.pkgs/google-cloud-sdk/completion.zsh.inc
|
||||||
source /home/daylin/.pkgs/google-cloud-sdk/path.zsh.inc
|
source /home/daylin/.pkgs/google-cloud-sdk/path.zsh.inc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d "$HOME/.deno" ]; then
|
||||||
|
export DENO_INSTALL="/home/daylin/.deno"
|
||||||
|
export PATH="$DENO_INSTALL/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -d "$HOME/.bun" ]; then
|
||||||
|
# bun completions
|
||||||
|
[ -s "/home/daylin/.bun/_bun" ] && source "/home/daylin/.bun/_bun"
|
||||||
|
|
||||||
|
# bun
|
||||||
|
export BUN_INSTALL="$HOME/.bun"
|
||||||
|
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue