Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christoph-jerolimov/dotfiles
https://github.com/christoph-jerolimov/dotfiles
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/christoph-jerolimov/dotfiles
- Owner: christoph-jerolimov
- Created: 2024-02-19T15:49:44.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-19T15:49:51.000Z (10 months ago)
- Last Synced: 2024-11-25T12:16:26.325Z (28 days ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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*
```