git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@133 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
15 lines
265 B
VimL
15 lines
265 B
VimL
" Stefans python-file plugin
|
|
|
|
" don't use spaces for tabs
|
|
setlocal noexpandtab
|
|
setlocal tabstop=4
|
|
setlocal shiftwidth=4
|
|
setlocal formatoptions=croq
|
|
|
|
setlocal tags+=/usr/lib/python/tags
|
|
" commenting
|
|
let b:commentstring = '#'
|
|
|
|
" Grep options
|
|
let b:GrepFiles = '*.py'
|