My personal dotfiles 🤓
Check the vscode.json
preferences file.
Artur.itermcolors
- Dracula Iterm
-
FiraCode 14pt
-
Use ligatures
-
Anti-aliased
-
Unicode Version 9 Widths
-
Cursor: Underline
-
Blinking cursor
brew install coreutils
brew install watchman
brew install jq
brew install ack
brew install ag
brew install wrk
brew install tree
Check the .zshrc
preferences file. There is a separate .bash_profile
file
to be used in both shells, .zshrc
includes it anyway.
brew install zsh
chsh -s $(which zsh) # Set as the default shell
brew install antigen
You can install plugins manually or using antigen:
Don't use the python global bin, use pyenv
to control any python version and
distribution.
brew install pyenv
brew install pyenv-virtualenv
brew install pyenv-virtualenvwrapper
# Add to your .bashrc
export PYENV_ROOT="$HOME/.pyenv"
command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
# Comment this line in the .bashrc:
# pyenv virtualenvwrapper_lazy
pyenv install 3.10.9
pyenv virtualenv 3.10.9 tools
pyenv activate tools
pip install ipython
pip install pep8
pip install flake8
pip install pylint
pip install black
# Uncomment this line in the .bashrc:
# pyenv virtualenvwrapper_lazy
# Set envs as global respecting the order
pyenv globals 3.10.9 tools
Follow https://github.com/nvm-sh/nvm
Use asdf to install multiple versions of java runtimes.