Skip to content

Latest commit

 

History

History
57 lines (48 loc) · 1.77 KB

README.md

File metadata and controls

57 lines (48 loc) · 1.77 KB

Overview

Setup a development environment for a new Mac quickly with my prefered tools and configurations.

Organization

  • vim - .vimrc with aliases, styling, and plugins
  • bash - .bashrc, .profile to configure terminal

Downloads & Configurations

General Software

  1. Clone this repo and run the setup script on your new machine.
git clone [email protected]:jessdaubner/dotfiles.git
cd dotfiles && setup.sh

setup.sh installs Home Brew and uses Homebrew Bundle to install software on your macOS.

  1. Configure Github by creating a new public key and adding it to your account.

Configure Vim

  1. Download vim-plug, a minimalist Vim plugin manager
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  1. Copy the .vimrc file to home directory
cp dotfiles/vim/.vimrc ~/.vimrc
  1. Start vim and install the plugins
vim
:PlugInstall

Configure Terminal

  1. For the newer version of MacOS, continue to use bash as the default shell with chsh -s /bin/bash and verify the change with echo "$SHELL"
  2. Copy the .bashrc and .profile files to home directory
cp dotfiles/bash/* ~/
source ~/.bashrc
  1. Manually modify the default Terminal settings Preferences > Profile > Select the Pro profile and change font size to 16pt.

Configure Cloud Provider CLI

Azure

AWS

Run aws configure and enter AWS Access Key ID, AWS Secret Access Key, and region.

Installation checks

which python
python --version
aws --version
java --version