X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2de20d9c659d6350a6408dc1ec4aa6e0b1dea6ac..3f68af9813542a5e277b7a51b316644241c372d7:/.vim/bundle/vim-python-pep8-indent/spec/vimrc diff --git a/.vim/bundle/vim-python-pep8-indent/spec/vimrc b/.vim/bundle/vim-python-pep8-indent/spec/vimrc new file mode 100644 index 0000000..e549f80 --- /dev/null +++ b/.vim/bundle/vim-python-pep8-indent/spec/vimrc @@ -0,0 +1,22 @@ +" vint: -ProhibitSetNoCompatible +set nocompatible + +filetype plugin on +filetype indent on +syntax on + +set noswapfile nobackup + +" remove default ~/.vim directories to avoid loading plugins +set runtimepath-=~/.vim +set runtimepath-=~/.vim/after + +let sfile = expand('') +let plugin_path = fnamemodify(sfile, ':p:h:h') +exe 'set runtimepath^='.plugin_path + +if !empty($PYTHON_PEP8_INDENT_TEST_PROFILE_BASE) + execute printf('profile start %s.%s', + \ $PYTHON_PEP8_INDENT_TEST_PROFILE_BASE, getpid()) + execute 'profile! file '. plugin_path . '/indent/python.vim' +endif