git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@133 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
28 lines
465 B
VimL
28 lines
465 B
VimL
" Vim filetype plugin
|
|
" Language: damos command file
|
|
" Maintainer: Stefan Liebl <S.Liebl@gmx.de>
|
|
" URL:
|
|
" Credits:
|
|
|
|
" Only do this when not done yet for this buffer
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
" ----
|
|
" TABS
|
|
" ----
|
|
" use spaces for tabs
|
|
setlocal expandtab
|
|
|
|
" autoindent
|
|
" indent mode - one of autoindent, smartindent or cindent
|
|
setlocal autoindent
|
|
|
|
" commenting
|
|
" ----------
|
|
let b:commentstring = "// "
|
|
|
|
" Grep options
|
|
let b:GrepFiles = '*.dcm'
|