diff options
-rwxr-xr-x | init.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -71,12 +71,14 @@ git_init_submodule () { common () { announce "--- common ---" # local_vimrc: - # directory-local settings applied to contained files + # directory-local settings applied to contained files (+requisite) LOCAL_VIMRC_DIR="local-vimrc" LOCAL_VIMRC_URL="http://lh-vim.googlecode.com/svn/misc/trunk/plugin/local_vimrc.vim" + LH_COMMON_URL="http://lh-vim.googlecode.com/svn/vim-lib/trunk/autoload/lh/common.vim" # "plugin" directory has to be added (downloading recursively # the whole original "plugin" path for one file is impractical) do_wget $1 "$LOCAL_VIMRC_DIR/plugin" -nc "$LOCAL_VIMRC_URL" + do_wget $1 "$LOCAL_VIMRC_DIR/autoload/lh" -nc "$LH_COMMON_URL" } python () { |