initial commit

This commit is contained in:
2026-03-26 22:12:36 +02:00
commit fe48b97674
17 changed files with 631 additions and 0 deletions

13
shell/.bash_profile Normal file
View File

@@ -0,0 +1,13 @@
# ~/.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"