updated profile_setup.sh script and bash_profile file

This commit is contained in:
natsmith9 2017-05-31 18:18:51 +00:00
parent 58c4e49654
commit 883bbb1b0c
2 changed files with 11 additions and 4 deletions

View File

@ -11,3 +11,6 @@ PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH
export PS1="\e[0;37;42m\u@\h:\e[m\$PWD> "
eval $(dircolors -b ~/.dir_colors)
#eval `dircolors -b > ~/.dir_colors`

View File

@ -49,20 +49,24 @@ mkdir ~/.vim/autoload ~/.vim/bundle
echo "...done"
echo "Installing Pathogen and other Vim plugins..."
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
#curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
cd ~/.vim
git clone https://github.com/tpope/vim-pathogen.git
mv vim-pathogen/autoload/* autoload/
rm -rf vim-pathogen
if [ $? -ne 0 ]; then
RC=$?
fi
cd ~/.vim/bundle
cd bundle
git clone https://github.com/tpope/vim-sensible.git
if [ $? -ne 0 ]; then
RC=$?
fi
git clone git://github.com/altercation/vim-colors-solarized.git
git clone https://github.com/altercation/vim-colors-solarized.git
if [ $? -ne 0 ]; then
RC=$?
@ -72,7 +76,7 @@ git clone --depth=1 https://github.com/vim-syntastic/syntastic.git
if [ $? -ne 0 ]; then
RC=$?
fi
git clone git://github.com/Raimondi/delimitMate.git
git clone https://github.com/Raimondi/delimitMate.git
if [ $? -ne 0 ]; then
RC=$?