Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dangdungcntt/dotfiles


https://github.com/dangdungcntt/dotfiles

Last synced: about 2 months ago
JSON representation

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
```