-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule vcscommand
added at
bc6ac1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
# | ||
# Install script for VIM config files | ||
# | ||
|
||
# Get name of directory where install script is located | ||
VIM_DIR=`dirname $0` | ||
|
||
# Create symbolic links to .vimrc and .gvimrc files | ||
|
||
echo " -- linking $VIM_DIR/vimrc to $HOME/.vimrc" | ||
ln -s $VIM_DIR/vimrc $HOME/.vimrc | ||
|
||
echo " -- linking $VIM_DIR/gvimrc to $HOME/.gvimrc" | ||
ln -s $VIM_DIR/gvimrc $HOME/.gvimrc | ||
|
||
# Initialize and update submodules | ||
|
||
pushd $VIM_DIR | ||
|
||
echo " -- initializing git submodules" | ||
git submodule init | ||
|
||
echo " -- updating git submodules" | ||
git submodule update | ||
|
||
popd |