Built on top of the vim setup from https://github.com/maciakl/.vim
This is my personal git directory, under source control ready to be deployed across across all platforms.
On Linux and Mac:
rm -rf .vim
rm .vimrc
git clone [email protected]:chrisgladd/vimsetup.git
ln -s .vim/.vimrc .vimrc
cd .vim
git submodule init
git submodule update
On Windows:
rmdir /s /q vimfiles
del _vimrc
git clone [email protected]:chrisgladd/vimsetup.git
mklink /d vimfiles .vim
mklink /h _vimrc .vim\.vimrc
cd .vim
git submodule init
git submodule update
On Windows XP:
rmdir /s /q vimfiles
del _vimrc
git clone [email protected]:chrisgladd/vimsetup.git
junction vimfiles .vim
fsutil hardlink create _vimrc .vim\.vimrc
cd .vim
git submodule init
git submodule update
Note that you will need junction.exe from Sysinternals to create the symbolic link for the directory. The fsutil executable should be on your system by default.
You may also need these:
-
-
On windows download
ctags.exe
and put somewhere in your path -
On a mac use Homebrew to install the package ctags. Then add this to
.basrc
or.profile
alias ctags="
brew --prefix
/bin/ctags"
-