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

https://github.com/sgibb/dotfiles

My dotfiles managed with git and GNU stow
https://github.com/sgibb/dotfiles

Last synced: about 1 month ago
JSON representation

My dotfiles managed with git and GNU stow

Awesome Lists containing this project

README

        

# Dotfiles

The dotfiles are managed in their own directories and symbolic links are created
by [GNU stow](https://www.gnu.org/software/stow/).

## Installation

```bash
## on debian
apt-get install stow git
```

## Install dotfiles

```bash
git clone [email protected]:sgibb/dotfiles.git ~/dotfiles
cd ~/dotfiles
stow --target ~ stow ## setup stow
stow bash tmux vim
```

Or use:

```bash
git clone [email protected]:sgibb/dotfiles.git ~/dotfiles
cd ~/dotfiles
./bootstrap.sh
```

## Uninstall dotfiles

```bash
cd ~/dotfiles
stow -D bash tmux vim # ...
```