A collection of config files and tools to quickly set up a fresh macOS development environment, tailored for a JavaScript developer.
Includes my favorite browsers, code editor, a shiny terminal and a bunch of CLI tools.
- Browsers: Brave, Google Chrome and Firefox.
- Editor: VSCode with JavaScript-oriented settings and essential plugins.
- Terminal: iTerm with the oh-my-zsh shell and Dracula-inspired theme.
- Windows manager: Rectangle
- Clipboard manager: Maccy
GitHub CLI, git-open, n, wget, zoxide, ack, bat, thefuck, tldr
xcode-select --install
git clone https://github.com/jarekdanielak/dotfiles.git ~/.dotfiles
bash ~/.dotfiles/install.sh
Note
Your files are backed up in ~/.dotfiles-backup
directory. See how to bring it back.
git config --global user.name "name"
git config --global user.email "email"
git config --global github.user "username"
Your config is backed up in the ~/.dotfiles-backup
directory.
Copy .zshrc
and .gitconfig
files back to the home directory.
cp -f ~/.dotfiles-backup/.zshrc ~/
cp -f ~/.dotfiles-backup/.gitconfig ~/
Copy settings.json
back to VSCode User directory.
cp -f ~/.dotfiles-backup/settings.json ~/Library/Application\ Support/Code/User/
Bring back your old packages.
brew bundle cleanup --file='~/.dotfiles-backup/Brewfile' --force
Refare to uninstalling oh-my-zsh.