stefan ce727f6410 standard vimfiles benutzbar
Überall Make statt make und bmsk


git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@138 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
2007-04-18 16:01:00 +00:00

22 lines
346 B
VimL

" Stefans vim-file plugin
" ----
" TABS
" ----
setlocal expandtab
setlocal shiftwidth=4
setlocal softtabstop=4
setlocal formatoptions=croq
" vimfiles sollen immer im unix-Format gespeichert werden
if filewritable(expand('%'))
setlocal fileformat=unix
endif
" commenting
let b:commentstring = '"'
" Grep options
let b:GrepFiles = '*.vim'