X-Git-Url: https://plomlompom.com/repos/?p=config;a=blobdiff_plain;f=setup_go.sh;h=fc2f34490c43c13bb692f8b3e4333f2dfd43fe01;hp=0d27fc3ce962b145042e87c7de58031c8eb1840a;hb=HEAD;hpb=e54aa50fe04f6d1d0f0ec10525024e4bb12f7b94 diff --git a/setup_go.sh b/setup_go.sh index 0d27fc3..fc2f344 100755 --- a/setup_go.sh +++ b/setup_go.sh @@ -4,8 +4,6 @@ set -e set -x url=$1 -user=plom -users_home=`su $user -s /bin/sh -c 'echo ~'` ensure_line() { add_string="$1" @@ -22,18 +20,18 @@ if [ "$url" = "" ]; then echo 'Need URL of current go package' exit 1 fi -rm -rf /usr/local/go -apt-get -y install wget +sudo rm -rf /usr/local/go +sudo apt-get -y install wget wget -O $filename $url -tar -C /usr/local -xzf $filename +sudo tar -C /usr/local -xzf $filename rm $filename -ensure_line 'export PATH=$PATH:/usr/local/go/bin' $users_home/.shinit_add -ensure_line 'export GOPATH=~/gopath' $users_home/.shinit_add -apt-get -y install vim-pathogen -rm -rf $users_home/.vim/bundle/vim-go -su $user -s 'git clone https://github.com/fatih/vim-go.git ~/.vim/bundle/vim-go' -ensure_line 'source ~/.vimrc_vimgo' $users_home/.vimrc_add -cat << EOF > $users_home/.vimrc_vimgo +ensure_line 'export PATH=$PATH:/usr/local/go/bin' ~/.shinit_add +ensure_line 'export GOPATH=~/gopath' ~/.shinit_add +sudo apt-get -y install vim-pathogen +rm -rf ~/.vim/bundle/vim-go +git clone https://github.com/fatih/vim-go.git ~/.vim/bundle/vim-go +ensure_line 'source ~/.vimrc_vimgo' ~/.vimrc_add +cat << EOF > ~/.vimrc_vimgo " vim-go: Make vim-go run. call pathogen#infect() let g:go_disable_autoinstall = 0 @@ -44,5 +42,3 @@ let g:go_highlight_structs = 1 let g:go_highlight_operators = 1 let g:go_highlight_build_constraints = 1 EOF -chown $user $users_home/.vimrc_vimgo -chgrp $user $users_home/.vimrc_vimgo