Skip to content

kirillgashkov/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dotfiles

  1. Show hidden files and extensions (to make this bootstrap easier):

    defaults write NSGlobalDomain AppleShowAllFiles -bool true
    defaults write NSGlobalDomain AppleShowAllExtensions -bool true
    killall Finder
  2. Install Xcode Command Line Tools (to get Git):

    xcode-select --install
  3. Install your SSH key (to be able to clone your Dotfiles repository):

    mkdir -p "$HOME/.ssh"
    cp /path/to/your/key "$HOME/.ssh"
    chmod 0400 "$HOME/.ssh/key"
  4. Clone the Dotfiles repository:

    git clone git@github.com:kirillgashkov/dotfiles.git "$HOME/.dotfiles":
  5. Run the setup script (via caffeinate to prevent Mac from sleeping):

    cd "$HOME/.dotfiles"
    caffeinate -d ./setup.sh