8385ed00af
Fix error in powerline (ascii can't decode) Get vim plugins directly from git
75 lines
2.1 KiB
Bash
Executable file
75 lines
2.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Remove zsh completion dump
|
|
rm ~/.zcompdump
|
|
|
|
# Remove vim config directory
|
|
rm -rf ~/.vim-backup
|
|
mv ~/.vim ~/.vim-backup
|
|
mkdir -p ~/.vim/{autoload,bundle,colors,doc,ftplugin,plugin,spell,syntax}
|
|
|
|
# Install oh-my-zsh
|
|
rm -rf ~/.oh-my-zsh
|
|
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
|
|
|
|
# Copy the graphical part if needed
|
|
if [ "$1" == '--graphic' ]
|
|
then
|
|
rsync -av graphic/ ~/
|
|
fc-cache -vf ~/.fonts
|
|
fi
|
|
|
|
# Copy the common part
|
|
rsync -av common/ ~/
|
|
|
|
# Adjust the tmux conf
|
|
sed -i "s/REPLACEMEWITHFIRSTLETTEROFHOSTNAME/`expr substr \`hostname\` 1 1`/g" ~/.tmux.conf
|
|
|
|
######### VIM Config ###########
|
|
|
|
# Install pathogen
|
|
|
|
curl -Sso ~/.vim/autoload/pathogen.vim https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vim
|
|
|
|
# Install jedi plugin for vim
|
|
rm -rf ~/.vim/bundle/jedi
|
|
git clone https://github.com/davidhalter/jedi-vim.git ~/.vim/bundle/jedi
|
|
|
|
# Install nerdtree for vim
|
|
rm -rf ~/.vim/bundle/nerdtree
|
|
git clone https://github.com/scrooloose/nerdtree.git ~/.vim/bundle/nerdtree
|
|
|
|
# Install xmledit for vim
|
|
rm -rf ~/.vim/bundle/xmledit
|
|
git clone https://github.com/sukima/xmledit.git ~/.vim/bundle/xmledit
|
|
pushd ~/.vim/bundle/xmledit
|
|
make install
|
|
popd
|
|
|
|
# Install pyflakes plugin
|
|
rm -rf ~/.vim/bundle/pyflakes
|
|
git clone --recursive git://github.com/kevinw/pyflakes-vim.git ~/.vim/bundle/pyflakes
|
|
|
|
# Install autoclose plugin
|
|
rm -rf ~/.vim/bundle/autoclose
|
|
git clone https://github.com/Townk/vim-autoclose.git ~/.vim/bundle/autoclose
|
|
|
|
# Install tagbar plugin
|
|
rm -rf ~/.vim/bundle/tagbar
|
|
git clone https://github.com/majutsushi/tagbar ~/.vim/bundle/tagbar
|
|
|
|
# Install vcscommand plugin
|
|
rm -rf ~/.vim/bundle/vcscommand
|
|
git clone https://github.com/vim-scripts/vcscommand.vim.git ~/.vim/bundle/vcscommand
|
|
|
|
# Install easytag plugin
|
|
rm -rf ~/.vim/bundle/easytag
|
|
git clone https://github.com/vim-scripts/easytags.vim.git ~/.vim/bundle/easytag
|
|
|
|
# Install closetag plugin
|
|
rm -rf ~/.vim/bundle/closetag
|
|
git clone https://github.com/vim-scripts/closetag.vim.git ~/.vim/bundle/closetag
|
|
|
|
# Install css3 syntax
|
|
rm -rf ~/.vim/bundle/css3-mod
|
|
git clone https://github.com/vim-scripts/css3-mod.git ~/.vim/bundle/css3-mod
|