Skip to content

NazarioJL/.vim

Repository files navigation

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]:maciakl/.vim.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]:maciakl/.vim.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]:maciakl/.vim.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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published