Возможно, пример:
function Set_python_settings()
"Настройки табов для Python, согласно рекоммендациям
set tabstop=4
set shiftwidth=4
set smarttab
set expandtab "Ставим табы пробелами
set softtabstop=4 "4 пробела в табе
set smartindent
set tags=tags
" set tags=tags.da,python.tags,twisted.tags,tags
" set path+=~/work/da/python/**
endfunction
function Unset_python_settings()
set tags=tags;/
endfunction
autocmd BufNewFile,BufEnter *.{py} call Set_python_settings()
autocmd BufLeave *.{py} call Unset_python_settings()