Files
dotfiles/shell/.bash_profile
2026-03-26 23:53:32 +02:00

14 lines
830 B
Bash

# ~/.bash_profile — login shell
# source .bashrc for interactive login shells
[ -n "$BASH_VERSION" ] && [ -f "$HOME/.bashrc" ] && . "$HOME/.bashrc"
# ─── XDG ──────────────────────────────────────────────────────────────────────
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
# ─── default apps ─────────────────────────────────────────────────────────────
export EDITOR="code --wait" # change to nvim if you switch editors
export VISUAL="$EDITOR"
export BROWSER="google-chrome"