fedora installer: patch for existing zshrc file, moved fetching dependencies earlier in the script
This commit is contained in:
parent
9feee0b902
commit
b4552ecf7f
1 changed files with 7 additions and 4 deletions
|
@ -3,6 +3,12 @@
|
||||||
#software and shell
|
#software and shell
|
||||||
sudo yum install vim tmux atop zsh thunderbird thunderbird-enigmail thunderbird-lightning firefox
|
sudo yum install vim tmux atop zsh thunderbird thunderbird-enigmail thunderbird-lightning firefox
|
||||||
sudo chsh -s `which zsh` $USER
|
sudo chsh -s `which zsh` $USER
|
||||||
|
#fetch dependencies
|
||||||
|
cd $DIR
|
||||||
|
git submodule init
|
||||||
|
git submodule update --recursive
|
||||||
|
#rvm
|
||||||
|
|
||||||
curl -sSL https://get.rvm.io | bash -s stable
|
curl -sSL https://get.rvm.io | bash -s stable
|
||||||
rvm install ruby
|
rvm install ruby
|
||||||
|
|
||||||
|
@ -12,6 +18,7 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
ln -s "$DIR/.vim" ~/.
|
ln -s "$DIR/.vim" ~/.
|
||||||
ln -s "$DIR/.vimrc" ~/.
|
ln -s "$DIR/.vimrc" ~/.
|
||||||
ln -s "$DIR/.tmux.conf" ~/.
|
ln -s "$DIR/.tmux.conf" ~/.
|
||||||
|
rm -f "$DIR/.zshrc"
|
||||||
ln -s "$DIR/.zshrc" ~/.
|
ln -s "$DIR/.zshrc" ~/.
|
||||||
ln -s "$DIR/.oh-my-zsh" ~/.
|
ln -s "$DIR/.oh-my-zsh" ~/.
|
||||||
ln -s "$DIR/.gitconfig.linux.private" ~/.gitconfig
|
ln -s "$DIR/.gitconfig.linux.private" ~/.gitconfig
|
||||||
|
@ -22,10 +29,6 @@ mkdir ~/.fonts
|
||||||
cp -rv "$DIR/fonts" ~/.fonts
|
cp -rv "$DIR/fonts" ~/.fonts
|
||||||
fc-cache
|
fc-cache
|
||||||
|
|
||||||
#fetch dependencies
|
|
||||||
cd $DIR
|
|
||||||
git submodule init
|
|
||||||
git submodule update
|
|
||||||
|
|
||||||
#set solarized scheme
|
#set solarized scheme
|
||||||
$DIR/gnome-terminal-colors-solarized/install.sh
|
$DIR/gnome-terminal-colors-solarized/install.sh
|
||||||
|
|
Loading…
Reference in a new issue