diff --git a/plugin/indent_guides.vim b/plugin/indent_guides.vim index b4085b5..d15402c 100644 --- a/plugin/indent_guides.vim +++ b/plugin/indent_guides.vim @@ -1,6 +1,11 @@ " Author: Nate Kane " Homepage: http://github.com/nathanaelkane/vim-indent-guides +if exists('g:loaded_indent_guides') || &cp + finish +endif +let g:loaded_indent_guides = 1 + function! s:IndentGuidesToggle() call indent_guides#toggle() endfunction