Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dangdungcntt/dotfiles
https://github.com/dangdungcntt/dotfiles
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dangdungcntt/dotfiles
- Owner: dangdungcntt
- Created: 2020-10-31T03:51:14.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-23T08:18:33.000Z (5 months ago)
- Last Synced: 2024-08-23T09:33:37.900Z (5 months ago)
- Language: Shell
- Size: 49.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Linux
```bash
ln -s $(pwd)/.bash_aliases ~/.bash_aliases
ln -s $(pwd)/.gitconfig ~/.gitconfig
```## Mac
```bash
echo "source $(pwd)/.mac_aliases" >> ~/.zshrc
echo "source $(pwd)/.bash_aliases" >> ~/.zshrc
ln -s $(pwd)/.gitconfig ~/.gitconfig
```## Custom .gitconfig
```bash
ln -s $(pwd)/.gitconfig-custom ~/.gitconfig-custom
```## Laravel Tinker in $HOME folder
```bash
cd $HOME
composer create-project laravel/laravel tinkerhome
ln -s $HOME/tinkerhome/artisan ~/artisan
```