Skip to content

chrisgladd/vimsetup

Repository files navigation

Built on top of the vim setup from https://github.com/maciakl/.vim

My Personal Vim Directory

This is my personal git directory, under source control ready to be deployed across across all platforms.

Deploying

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.

Other Prerequisites

You may also need these:

  • Exuberant Ctags

    • 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"

  • Python 2.7

About

Vim Setup for sharing across Linux and Windows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published