This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================================================== | |
| # 1. CORE PATHS & ENVIRONMENT VARIABLES (MUST BE AT THE TOP) | |
| # ============================================================================== | |
| # Local binaries (fixes zoxide and bat) | |
| export PATH="$HOME/.local/bin:$PATH" | |
| # NVM (Node Version Manager) - MUST load before Oh My Zsh and Angular CLI | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.colorTheme": "Tokyo Night", | |
| "[python]": { | |
| "editor.formatOnType": true | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "workbench.iconTheme": "symbols", | |
| "window.zoomLevel": 0, | |
| "git.autofetch": true, | |
| "editor.wordWrap": "on", |