Pradumnasaraf / .dotfiles

This repository contains my dotfiles for Pradumnasaraf's macOS setup.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

.dotfiles

This repository contains my dotfiles for Pradumnasaraf's macOS setup.

Steps to setup a new mac

  1. Install Apple's Command Line Tools, which are prerequisites for Git and Homebrew.
xcode-select --install
  1. Clone repo into new hidden directory.
git clone https://github.com/Pradumnasaraf/.dotfiles.git ~/.dotfiles
  1. Create symlinks in the Home directory to the real files in the repo.
ln -s ~/.dotfiles/.gitconfig ~/.gitconfig
ln -s ~/.dotfiles/.zprofile ~/.zprofile
ln -s ~/.dotfiles/.zshrc ~/.zshrc
  1. Install Homebrew, followed by the software listed in the Brewfile.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
  1. Add Homebrew's installed location to your $PATH in ~/.zprofile:
eval "$(/opt/homebrew/bin/brew shellenv)"
  1. Install all the software in the Brewfile located in the root of this repo.
brew bundle --file ~/.dotfiles/Brewfile
  1. Install Oh My Zsh.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  1. Install zsh-autosuggestions extension.
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
  1. Start MongoDB and set it to launch at startup. Docs for reference
brew services start mongodb-community

To check if MongoDB is running, run the following command:

brew services list
or
mongosh

Steps to Update or Create the Brewfile

brew bundle dump --describe --file ~/.dotfiles/Brewfile

Setting up a GPG Key for signing commits

Follow the steps mentioned in the link below to setup a GPG key for signing commits. https://docs.github.com/en/authentication/managing-commit-signature-verification/generating-a-new-gpg-key

After setting up to sign commits, run the following commands to configure git to sign all commits by default.

git config --global user.signingkey <GPG Key ID>
git config --global commit.gpgsign true

Security

If you discover any security related issues, please check the security policy for more information.

About

This repository contains my dotfiles for Pradumnasaraf's macOS setup.

License:GNU General Public License v3.0


Languages

Language:Shell 63.1%Language:Ruby 36.9%