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

https://github.com/mwallner/myenv

stuff I need to feel cozy on my boxes
https://github.com/mwallner/myenv

Last synced: over 1 year ago
JSON representation

stuff I need to feel cozy on my boxes

Awesome Lists containing this project

README

          

# myenv
stuff I need to feel cozy on my boxes

## setup Linux shell env

checkout "myenv" to homedir:
```
cd ~
git clone https://github.com/mwallner/myenv.git
```

create required links
```
cd ~
mv .bashrc .bashrc_bk
ln -s myenv/bash/.* .
```

## dot-source PowerShell profile in Windows
```
code $profile
```
add the following content to the file
```
$myenv = Join-Path ~ "\myenv\powershell\Microsoft.PowerShell_profile.ps1"
if (Test-Path $myenv) {
. $myenv
}
```