From 9465a8bf64f914635396ed28ab028429cbe875c2 Mon Sep 17 00:00:00 2001 From: Anton Vietrov Date: Thu, 17 Nov 2022 11:04:27 +0100 Subject: [PATCH] Update README with more instructions. --- README.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ed0f228..2102159 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,34 @@ # My dotfiles -## Manual Steps -### nvim +## New Machine Setup +Setup brew: +``` +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` + +Setup Dotbot +``` +mkdir ~/.config +pip3 install dotbot && python3 -m dotbot -c install.conf.yaml +``` + +Install all the things: +``` +HOMEBREW_BUNDLE_FILE='~/.config/Brewfile' brew bundle +``` + +## nvim * Setup Packer: https://github.com/wbthomason/packer.nvim#quickstart -### git + +## git I split gitconfig in two files to allow different global user settings on different machines (work, personal). The common config is available in this in this repo and can be used like this: ``` [user] - email = - name = + email = + name = [include] path = /gitconfig_common ```