Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/christoph-jerolimov/dotfiles


https://github.com/christoph-jerolimov/dotfiles

Last synced: 28 days ago
JSON representation

Awesome Lists containing this project

README

        

# (Personal) dotfiles

## Setup

```bash
if [ ! -d ~/git/jerolimov ]; then
mkdir -p ~/git/jerolimov
git clone https://github.com/jerolimov/dotfiles ~/git/jerolimov/dotfiles
fi
```

### Manually link files

```bash
cd ~/git/jerolimov/dotfiles
for file in .gitconfig*; do
rm ~/$file
ln -s ~/git/jerolimov/dotfiles/$file ~/$file
done
ls -l ~/.gitconfig*
```