PasiBergman / dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotfiles

Collection of many of my macOS/Linux configuration files.

Installation utilizes GNU Stow.

dotfiles installation

  • Make sure, that GNU Stow is installed, e.g. on macOS use
brew install stow
  • Choose a folder name for your dotfiles and store the name to a variable. Store also the URL of the dotfiles repository
DOTFILES_DIR="~/.dotfiles"

# Using SSH
REPO_URL="git@github.com:PasiBergman/dotfiles.git"
# Using HTTPS
# REPO_URL="https://github.com/PasiBergman/dotfiles.git"

git clone $REPO_URL $DOTFILES_DIR

cd $DOTFILES_DIR

#Link one directory
stow <directory>
# Link all
# find . -type d -maxdepth 0 -exec stow {} \;

About

License:MIT License


Languages

Language:Shell 95.5%Language:Python 3.2%Language:Lua 1.4%