These them there them dotfiles.
Install Xcode:
touch ~/.zshrc
xcode-select --installInstall brew:
open https://brew.sh/
brew -v
brew doctor
brew updateInstall git:
brew install gitInstall nvm:
mkdir -p ~/.nvm
open https://github.com/nvm-sh/nvm#installing-and-updating
nvm -vOpen new tab to show nvm has installed:
nvm -vWhen we install oh-my-zsh, it'll overwrite our ~/.zshrc, so let's make a backup to save our nvm stuff:
mv ~/.zshrc ~/.zshrc.bakInstall zsh, oh-my-zsh:
brew install zsh
echo '/opt/homebrew/bin/zsh' | sudo tee -a /etc/shells > /dev/null
chsh -s /opt/homebrew/bin/zsh
open https://github.com/ohmyzsh/ohmyzsh#basic-installation
omz update
# copy contents of original `~/.zshrc` into one generated by this install
cat ~/.zshrc.bak >> ~/.zshrcOpen a new tab and you should see zsh and omz load on startup.
Clone this project:
mkdir -p ~/bradleyoesch
cd ~/bradleyoesch
git clone https://github.com/bradleyoesch/dotfiles.git
cd dotfilesRun init script then restart zsh to pick up the changes:
./init.sh
mv ~/.zshrc ~/.zshrc.bak
./install.sh
exec zshIf everything looks good, you can remove your old zshrc at any point:
rm ~/.zshrc.bakopen ~/ApplicationsDownload and set up: https://filezilla-project.org/download.php?platform=osx
Add ssh key:
ssh-keygen- Copy the key manually into your droplet
- Add ssh key manually, since filezilla expects a specific format
Set up google account
- Hover Zoom+ - import settings from
applications/chrome/hoverzoon.json- To export: Extension Icon > Options > Advanced > Export
echo '<JSON>' | jq -S '.' > gui/chrome/hoverzoom.json
- LastPass - log in
- RedditEnhancementSuite - import settings from Google Drive
- SetupVPN - log in
- Stylebot - import settings from
applications/chrome/stylebot.json- To export: Extension Icon > Sync > Export
jq -S '.' ~/Downloads/stylebot_backup.json > applications/chrome/stylebot.json
- uBlock Origin Lite - import settings from
applications/chrome/ublock.json
- Postman - log in with Google
Load iTerm2 settings:
General > Preferences > Load preferences from a custom folder or URL
Profiles > Other Actions... > Import JSON Profiles...
Profiles > Colors > Color Presets... > Import...
Keys > Key Bindings > Presets... > Import
Set global hotkey:
Preferences > Keys > Hotkey > cmd + opt +
Open the Quicklook directory and Right click > Show Package Contents > ... > MacOS > Right click > Open > Allow
open /Users/bradley/Library/QuickLook
open ~/Applications # QLMarkdownImport settings from applications/rectangle/config.json
cmd + space > Rectangle > Gear icon > Import (at bottom)
Log in with Facebook, double check settings
Settings should be copied for you already after installing.
You can open from the terminal with subl:
subl ~/.zshrcThe theme may be broken, so comment it out and reinstall:
cmd + ,for preferences- visit https://monokai.pro/sublime-text to install (may be under
Monokai+) cmd + shift + P > Monokai Pro: select themeto apply
Download and set up: https://transmissionbt.com/download.html
Settings should be copied for you already after installing.
To import settings into VLC:
./applications/vlc/sync.sh importTo import settings from VLC:
./applications/vlc/sync.sh exportThis project uses dotbot to manage the installation.
./install.sh && exec zshTo view all relevant files and directories in this repo, run tree:
tree -aI 'dotbot*|.git|.gitmodules'Many thanks to the dotfiles community.