diff --git a/bash_profile b/bash_profile index 5a29c63..08e4b35 100644 --- a/bash_profile +++ b/bash_profile @@ -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` diff --git a/profile_setup.sh b/profile_setup.sh index db54f65..70c1ebd 100644 --- a/profile_setup.sh +++ b/profile_setup.sh @@ -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=$?