2020-05-12 20:56:32 +09:00
|
|
|
# zsh-setup for sup39
|
|
|
|
## Usage
|
|
|
|
### Full setup
|
|
|
|
```zsh
|
|
|
|
curl https://raw.githubusercontent.com/sup39/zsh-setup/master/setup.sh | sh -
|
2020-05-12 21:31:37 +09:00
|
|
|
source $HOME/.zshrc
|
2020-05-12 20:56:32 +09:00
|
|
|
```
|
|
|
|
Alternatively, use the shortened url:
|
|
|
|
```zsh
|
2020-07-31 23:57:09 +09:00
|
|
|
# Download setup file and execute it
|
2021-10-24 15:58:03 +09:00
|
|
|
curl -sL link.sup39.dev/zsh-setup | sh -
|
2020-05-12 21:31:37 +09:00
|
|
|
|
|
|
|
# Finally, source the zshrc file
|
|
|
|
source $HOME/.zshrc
|
2020-05-12 20:56:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
### zshrc only
|
|
|
|
```zsh
|
|
|
|
curl https://raw.githubusercontent.com/sup39/zsh-setup/master/zshrc >> $HOME/.zshrc
|
2020-05-12 21:23:21 +09:00
|
|
|
source $HOME/.zshrc
|
2020-05-12 20:56:32 +09:00
|
|
|
```
|
|
|
|
|
|
|
|
## Content
|
2021-05-12 21:35:23 +09:00
|
|
|
- `~/.zshenv`
|
2020-05-12 20:56:32 +09:00
|
|
|
- `~/.zshrc`
|
2021-10-24 15:58:03 +09:00
|
|
|
- `~/.screenrc`
|
2020-05-12 20:56:32 +09:00
|
|
|
|
2020-07-31 23:57:09 +09:00
|
|
|
:bulb: No overwriting if exists
|