chore: update dotfiles configuration and aliases management

This commit is contained in:
2025-06-16 11:36:33 +02:00
parent f708bef114
commit 774fd82066
7 changed files with 7 additions and 4 deletions

View File

@ -7,3 +7,4 @@ setup
README.md
.gitconfig.d
post-merge
alias.d

View File

@ -1 +1,2 @@
export OPENAI_KEY=
export OPENAI_KEY=
export DOTFILES_INSTALL_DIR=

7
.zshrc
View File

@ -121,12 +121,12 @@ source $ZSH/oh-my-zsh.sh
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
for file in $HOME/.alias.d/*; do
source $HOME/.zshenv
for file in $DOTFILES_INSTALL_DIR/alias.d/*; do
source $file
done
source $HOME/.zshenv
eval "$(direnv hook zsh)"
if command -v ng >/dev/null; then
@ -140,3 +140,4 @@ fi
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
export PATH=".:$PATH"