dev: automated commit - 2025-09-06 17:51:28

This commit is contained in:
Mariano Z. 2025-09-06 17:51:28 -03:00
parent c84dfa059e
commit b18f0b1edf
13 changed files with 560 additions and 116 deletions

View file

@ -1,9 +1,18 @@
# Base Environment Variables
# Core XDG Base Directory specification
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-$HOME/.config}
XDG_CACHE_HOME=${XDG_CACHE_HOME:-$HOME/.cache}
XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
XDG_STATE_HOME=${XDG_STATE_HOME:-$HOME/.local/state}
XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR:-/run/user/$UID}
# Shell configuration
ZDOTDIR=${ZDOTDIR:-$XDG_CONFIG_HOME/zsh}
# Default applications
EDITOR=nvim
TERMINAL=kitty
LANG=en_US.UTF-8
XDG_CONFIG_HOME=/home/mzunino/.config
XDG_CACHE_HOME=/home/mzunino/.cache
XDG_DATA_HOME=/home/mzunino/.local/share
XDG_STATE_HOME=/home/mzunino/.local/state
ZDOTDIR=/home/mzunino/.config/zsh
# Locale
LANG=en_US.UTF-8