Skip to content

vanbouzoukas/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

My personal collection of dotfiles for macOS development setup.

Requirements

  • macOS – This setup is designed specifically for macOS
  • zsh – Unix shell (included with macOS)
  • git – version control
  • Homebrew – package manager for macOS

Installation

  1. Clone the repo into your home directory:

    git clone [email protected]:vanbouzoukas/dotfiles.git ~/Developer/dotfiles
  2. Install Homebrew if you haven't already:

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. Install all packages and applications from the Brewfile:

    cd ~/Developer/dotfiles
    brew bundle
  4. Point to the relevant dotfiles in your local config.

    .zshrc

    Source your custom shell configuration:

    source ~/Developer/dotfiles/.zshrc

    .gitconfig

    Include your Git config and set your user identity:

    [include]
        path = ~/Developer/dotfiles/.gitconfig
    
    [user]
        name = Your Name
        email = [email protected]

Maintenance

To keep your setup up to date:

# Update Homebrew packages
brewuc  # alias for: brew upgrade --greedy && brew cleanup --prune=all

# Update pnpm packages
pnu     # alias for: pnpm update:latest

# Reload shell configuration
reload  # alias for: source ~/.zshrc

About

My personal collection of dotfiles for macOS setup

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published