update config for jetbrains compatibility
This commit is contained in:
parent
fac9010c68
commit
62518907ed
3 changed files with 31 additions and 68 deletions
37
Configs/zsh/.zprofile
Normal file
37
Configs/zsh/.zprofile
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
#!/usr/bin/zsh
|
||||
|
||||
update_path() {
|
||||
export PATH="$PATH:$1"
|
||||
}
|
||||
|
||||
# Set manually
|
||||
export REPOS="$HOME/.local/share/chezmoi"
|
||||
export DOTS="$REPOS/Private/dots"
|
||||
export EDITOR=nvim
|
||||
export VISUAL="$EDITOR"
|
||||
export QT_STYLE_OVERRIDE=kvantum
|
||||
export MOZ_ENABLE_WAYLAND=1
|
||||
|
||||
update_path "$DOTS/scripts"
|
||||
update_path "$HOME/.local/bin"
|
||||
update_path "$HOME/bin"
|
||||
update_path "/usr/local/bin"
|
||||
|
||||
# Dev Stuff
|
||||
export NPM_PACKAGES="$HOME/.npm-packages"
|
||||
export NODE_PATH="$NPM_PACKAGES/lib/node_modules${NODE_PATH:+:$NODE_PATH}"
|
||||
update_path "$NPM_PACKAGES/bin"
|
||||
|
||||
export PNPM_HOME="$HOME/.local/share/pnpm"
|
||||
update_path "$PNPM_HOME"
|
||||
|
||||
export BUN_INSTALL="$HOME/.bun"
|
||||
update_path "$BUN_INSTALL/bin"
|
||||
|
||||
# bun completions
|
||||
[ -s "/home/aleidk/.bun/_bun" ] && source "/home/aleidk/.bun/_bun"
|
||||
|
||||
source "$HOME/.rye/env"
|
||||
|
||||
# . "$HOME/.cargo/env"
|
||||
update_path "$HOME/.cargo/bin/"
|
||||
Loading…
Add table
Add a link
Reference in a new issue