These are my personal dotfiles.
To install these dotfiles, clone the repo. I use GNU stow to manage symlinking my dotfiles
- Brewfile, depending on the os (mac/linux) it will install packages listed in the brewfile.
- Zsh config and tweaks
- Tmux with personalization
- Neovim with plugins and personalization
Theme = Custom theme Prompt = Pure
To get Python 3.7 working on Apple silicon
# Install x86 brew
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
alias ibrew=/usr/local/bin/brew
# Install Python 3.7
ibrew install [email protected]
# Add `python` executable (symlink to `python3`)
ln -s python3 "$(ibrew --prefix [email protected])"/bin/python
# Symlink x86 Python 3.7 into pyenv
ln -s "$(ibrew --prefix [email protected])" .pyenv/versions/3.7.10
# Check
pyenv local 3.7.10
python -V
# Python 3.7.10
python -c 'import _ctypes'. # works!
All env variables are stored in zsh.env file which is not synced to git. Variables to store (SNYK_TOKEN,...)