Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drubaby/dotfiles
My dotfiles
https://github.com/drubaby/dotfiles
Last synced: about 6 hours ago
JSON representation
My dotfiles
- Host: GitHub
- URL: https://github.com/drubaby/dotfiles
- Owner: drubaby
- Created: 2022-02-06T13:14:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T19:48:23.000Z (8 months ago)
- Last Synced: 2024-03-26T20:47:17.039Z (8 months ago)
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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]
```