17 lines
211 B
VimL
17 lines
211 B
VimL
" Stefans vim-file plugin
|
|
|
|
" ----
|
|
" TABS
|
|
" ----
|
|
setlocal noexpandtab
|
|
setlocal shiftwidth=4
|
|
|
|
setlocal formatoptions=croq
|
|
|
|
" commenting
|
|
let b:commentstring = '#'
|
|
|
|
" Grep options
|
|
let b:GrepFiles = '*.mak *.mkinc'
|
|
|