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
- Host: GitHub
- URL: https://github.com/mwallner/myenv
- Owner: mwallner
- License: mit
- Created: 2018-11-23T15:32:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-23T17:33:23.000Z (over 4 years ago)
- Last Synced: 2025-02-01T07:28:40.557Z (over 1 year ago)
- Language: Shell
- Size: 31.3 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
```