This commit is contained in:
2023-11-23 10:19:57 +03:00
parent 49720fac34
commit c26a11473f
10 changed files with 19 additions and 22 deletions

View File

@@ -13,6 +13,3 @@ zsh_include_file "includes/nvm"
# Add plugins.
# zsh_add_plugin "hlissner/zsh-autopair"
zsh_add_plugin "zsh-users/zsh-syntax-highlighting"
# bun completions
[ -s "/home/antoxa/.bun/_bun" ] && source "/home/antoxa/.bun/_bun"

0
zsh/.config/zsh/includes/aliases Normal file → Executable file
View File

8
zsh/.config/zsh/includes/bun Executable file
View File

@@ -0,0 +1,8 @@
#!/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"

0
zsh/.config/zsh/includes/environment Normal file → Executable file
View File

5
zsh/.config/zsh/includes/nvm Normal file → Executable file
View File

@@ -2,6 +2,5 @@
# NVM.
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
# nvm use --lts 1> /dev/null
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

0
zsh/.config/zsh/includes/prompt Normal file → Executable file
View File