dotfiles/vim/indent/ps1.vim
Eryn Wells 965016f0de Add Peter Provost's PowerShell plugin for Vim
See headers of any of the committed files.
2012-01-11 16:44:39 -08:00

18 lines
376 B
VimL

" Vim indent file
" Language: Windows PowerShell
" Maintainer: Peter Provost <peter@provost.org>
" Version: 1.0
"
" $LastChangedDate $
" $Rev $
" Only load this indent file when no other was loaded.
if exists("b:did_indent")
finish
endif
let b:did_indent = 1
" PS indenting is like indenting C
setlocal cindent cinoptions& cinoptions+=+0
let b:undo_indent = "setl cin<"