VimOutliner Windows installation howto
VimOutliner is a plugin that turns Vim into an outliner. It’s cross-platform. However, installing it on Windows can be challenging. My customized version of the plugin should make it a breeze.

Why VimOutliner?
- Vi lovers, this is probably the only reason that you need. All your Vi keystrokes work in VimOutliner as they would in Vim. Need I say more?
- Vim is free, and VimOutliner is also free. You can have access to a powerful outliner on any of your computers without paying a penny.
- Vim/VimOutliner is cross-platform. Whether you are using MacOS, Windows, Linux or some other variant of Unix (even Cygwin!), you can have the same outliner on every platform.
- VimOutliner files are simple text files that rely on indentation to indicate the level of nesting. Therefore, the outline files can be viewed using any text editor (not just Vim). Using Vim with the VimOutliner plugin provides added features like folding, checkboxes, hoisting, and percentage done (just to name a few).
- VimOutliner can run over an SSH session. Since Vim can run at the console, VimOutliner inherits this ability. There’s no need to initiate a Remote Desktop connection or leverage VNC, VimOutliner is text-based so an SSH session is all you need.
- With complete access to the plugin’s source code, you can modify VimOutliner to meet your needs and do whatever you think an outliner should do.
Installation howto
My customized version of VimOutliner 3.4 provides a straight-forward installation that works on Windows XP, Windows Vista and Windows 7. I’ve only tested it on Vim 7.2. If you run into issues using with other versions of Vim, please let me know or post a comment.
- Download vimoutliner-rayli.zip.
- Extract it in C:\Program Files\Vim\.
- This will create a C:\Program Files\Vim\vimfiles\ directory (if it doesn’t already exist). In addition, this puts the required plugin files in the correct directories.
- Add to the C:\Program Files\Vim\_vimrc file the following lines:
filetype plugin indent on syntax on runtime! ftdetect\*.vim
My customizations
These customizations are already integrated into my zip file. If you don’t like them, you can change them or remove them.
- In C:\Program Files\Vim\vimfiles\ftdetect\vo_base.vim, comment out the if-endif block. For whatever reason, this block causes my installation issues.
- In C:\Program Files\Vim\vimfiles\syntax\vo_base.vim, search for OL2 twice.
- On that line, change guifg=red to guifg=#FFAE66.
- In that same file, search for OL6.
- Change guifg=red to guifg=#FFAE66.
- The red syntax highlighting is too bright and doesn’t work well for me, so this change works much better.
- Search for FoldColumn.
- Comment out the FoldColumn line.
- In C:\Program Files\Vim\vimfiles\ftplugin\vo_base.vim, search for foldcolumn.
- Replace foldcolumn=1 with foldcolumn=4.
- My outlines usually nest more than 1 level, so it’s nice to see the fold characters rather than the fold level numbers in the fold column.
And there you have it… this installation has served me well for quite some time now, and I hope the trend continues with your installation.

November 9th, 2011 at 12:33 am
this works well for me. Thanks.
November 10th, 2011 at 9:41 am
@Luke: Happy to hear it works well for you!