mirror of
https://github.com/gryf/.vim.git
synced 2025-12-17 19:40:29 +01:00
9 lines
184 B
VimL
9 lines
184 B
VimL
let current_file = expand('%:p')
|
|
|
|
if match(current_file, '\cicard') < 0
|
|
ru! indent/python_pep8.vim
|
|
else
|
|
let g:pep8_exclude=['W191']
|
|
ru! $VIMRUNTIME/indent/python.vim
|
|
endif
|