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
- Host: GitHub
- URL: https://github.com/sgibb/dotfiles
- Owner: sgibb
- Created: 2018-11-01T15:03:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-16T16:17:06.000Z (about 4 years ago)
- Last Synced: 2025-02-14T12:40:50.964Z (3 months ago)
- Language: Shell
- Size: 41 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 # ...
```