Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pasibergman/dotfiles


https://github.com/pasibergman/dotfiles

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# 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

```shell
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

```shell
DOTFILES_DIR="~/.dotfiles"

# Using SSH
REPO_URL="[email protected]:PasiBergman/dotfiles.git"
# Using HTTPS
# REPO_URL="https://github.com/PasiBergman/dotfiles.git"

git clone $REPO_URL $DOTFILES_DIR

cd $DOTFILES_DIR

#Link a directory
stow

```