7 lines
296 B
Bash
7 lines
296 B
Bash
|
# This script should install oh-my-zsh and vim-plug
|
||
|
# oh-my-zsh
|
||
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
|
||
|
|
||
|
# vim-plug
|
||
|
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|