Compare commits

...

2 commits

Author SHA1 Message Date
916ce1b0ba let me see node_modules in lsd 2022-08-18 13:18:09 -05:00
5d23212904 add deno/bun boilerplate 2022-08-18 13:18:09 -05:00
2 changed files with 14 additions and 1 deletions

View file

@ -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.

View file

@ -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