20 lines
477 B
Bash
Executable file
20 lines
477 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
cd ~/.vim_runtime
|
|
|
|
echo '" DO NOT EDIT THIS FILE
|
|
" Add your own customizations in ~/.vim_runtime/my_configs.vim
|
|
|
|
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 :-)"
|