You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
382 B
15 lines
382 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# zsh
|
||
6 years ago
|
ln -s -f ~/.oh-my-terminal/zsh ~/.oh-my-zsh
|
||
6 years ago
|
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
|
||
|
|
||
|
# tmux
|
||
|
ln -s -f ~/.oh-my-terminal/tmux/.tmux.conf ~/.tmux.conf
|
||
|
ln -s -f ~/.oh-my-terminal/tmux/.tmux.conf.local ~/.tmux.conf.local
|
||
|
|
||
|
# vim
|
||
6 years ago
|
mkdir -p ~/.oh-my-terminal/vim/plugged
|
||
6 years ago
|
ln -s -f ~/.oh-my-terminal/vim ~/.vim_runtime
|
||
6 years ago
|
sh ~/.vim_runtime/install_super_vimrc.sh
|