1
0
Fork 0
mirror of synced 2024-06-29 03:51:09 -04:00
ultimate-vim/install_awesome_vimrc.sh
weiyang 6f6d50967c [refactor] Remove sources that non forked
Signed-off-by: weiyang <weiyang.ones@gmail.com>
2017-05-27 14:06:36 +08:00

22 lines
450 B
Bash
Executable file

#!/bin/sh
set -e
cd ~/.vim_runtime
echo "Installing plugins..."
./update_plugins.py > /dev/null
echo 'set runtimepath+=~/.vim_runtime
source ~/.vim_runtime/vimrcs/basic.vim
source ~/.vim_runtime/vimrcs/filetypes.vim
source ~/.vim_runtime/vimrcs/plugins_config.vim
source ~/.vim_runtime/vimrcs/extended.vim
try
source ~/.vim_runtime/my_configs.vim
catch
endtry' > ~/.vimrc
echo "Installed the Ultimate Vim configuration successfully! Enjoy :-)"