Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/thyrlian/dotfiles


https://github.com/thyrlian/dotfiles

dotfiles

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# Jing Li's dotfiles

Lazyman's Swiss Army Knife

## Setup

1. Clone the project;
2. Create symbolic link;
```shell-script
ln -s /where/you/clone/dotfiles ~/dotfiles

# Optional: hide the symbolic link but not the source file
SetFile -P -a V ~/dotfiles
```
3. Load dotfiles in your [whatever]**rc** file;
```shell-script
for DOTFILE in `find ~/dotfiles/files -type f -name ".*" | sed 's@//@/@'`
do
source $DOTFILE
done
```