Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/drubaby/dotfiles

My dotfiles
https://github.com/drubaby/dotfiles

Last synced: about 6 hours ago
JSON representation

My dotfiles

Awesome Lists containing this project

README

        

# Dotfiles

My configurations for git, zsh, and tmux

## Installation

**Pre-Requisite**
GNU Stow is used to create symlinks from sub-directories. Install this with `brew install stow` on OSX or `apt install stow` on Debian.

1. Clone repo and set up symlinks

```bash
# Clone repo
git clone https://github.com/drubaby/dotfiles.git ~/dotfiles
cd ~/dotfiles
git submodule update --force --recursive --init --remote

# Set up symlinks
stow zsh git tmux

# May have to re-fetch tmux plugins with " + I"
```

2. To identify yourself with git, create a `~/.gitconfig.local` with the following structure:

```bash
[user]
name = Replace Me
email = [email protected]
```