16 lines
295 B
VimL

" Stefans python-file plugin
" use spaces for tabs
setlocal expandtab
setlocal tabstop=4
setlocal shiftwidth=4
setlocal formatoptions=croq
setlocal tags+=/usr/lib/python/tags
nnoremap <TAB> :YcmCompleter GoTo<CR>
" commenting
let b:commentstring = '#'
" Grep options
let b:GrepFiles = '*.py'