Changes: - Refactored .zshrc into modular oh-my-zsh/custom/ files - Created aliases.zsh, functions.zsh, path.zsh, keybindings.zsh - Added bira-time.zsh-theme (bira with timestamp) - Added tools/*.zsh for pyenv, nvm, kubectl - Updated .tmux.conf.local with cross-platform support - Updated gpakosz/.tmux framework - Cleaned up .zshenv
13 lines
325 B
Text
13 lines
325 B
Text
# ~/.zshenv - Environment variables for ALL shells (including non-interactive)
|
|
# This file is sourced first, before .zshrc
|
|
# Only put truly global environment variables here
|
|
|
|
# Editor
|
|
export EDITOR='vim'
|
|
|
|
# Locale (uncomment if needed)
|
|
# export LANG=en_US.UTF-8
|
|
# export LC_ALL=en_US.UTF-8
|
|
|
|
# Cargo/Rust
|
|
. "$HOME/.cargo/env"
|