Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thyrlian/dotfiles
https://github.com/thyrlian/dotfiles
dotfiles
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thyrlian/dotfiles
- Owner: thyrlian
- Created: 2014-03-02T18:46:26.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2022-05-11T22:13:14.000Z (over 2 years ago)
- Last Synced: 2024-05-01T21:29:52.460Z (9 months ago)
- Topics: dotfiles
- Language: Shell
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```