2020-07-10 11:06:50 +00:00
|
|
|
# Developer Configuration
|
2020-02-19 00:02:15 +00:00
|
|
|
|
2020-07-10 11:06:50 +00:00
|
|
|
## zsh
|
2020-02-19 00:02:15 +00:00
|
|
|
|
2020-07-10 11:06:50 +00:00
|
|
|
### Oh My Zsh
|
2020-02-19 00:02:15 +00:00
|
|
|
https://github.com/ohmyzsh/ohmyzsh
|
|
|
|
```bash
|
|
|
|
sh -c "$(curl -fsSL \
|
|
|
|
https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
|
|
|
```
|
|
|
|
|
2020-07-10 11:06:50 +00:00
|
|
|
### zplug
|
2020-02-19 00:02:15 +00:00
|
|
|
https://github.com/zplug/zplug
|
|
|
|
```bash
|
|
|
|
curl -sL --proto-redir -all,https \
|
|
|
|
https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
|
|
|
|
```
|
|
|
|
|
2020-07-10 11:06:50 +00:00
|
|
|
## Vim
|
2020-02-19 00:02:15 +00:00
|
|
|
|
2020-07-10 11:06:50 +00:00
|
|
|
### Vim Plug
|
2020-02-19 00:02:15 +00:00
|
|
|
https://github.com/junegunn/vim-plug
|
|
|
|
```bash
|
|
|
|
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
|
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
```
|
|
|
|
|
|
|
|
<style class="fallback">body{visibility:hidden}</style><script>markdeepOptions={tocStyle:'long'};</script>
|
|
|
|
<!-- Markdeep: --><script src="https://casual-effects.com/markdeep/latest/markdeep.min.js?" charset="utf-8"></script>
|