From 4309e1214eaa2cdf2d5bf783d3df9571bd4f0bfb Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 19 May 2015 09:57:50 +0200 Subject: [PATCH] - Add python filetype plugin for indents - Add vim-fugitive and vim-surround --- .vim/ftplugin/python.vim | 6 ++++++ .vimrc | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 .vim/ftplugin/python.vim diff --git a/.vim/ftplugin/python.vim b/.vim/ftplugin/python.vim new file mode 100644 index 0000000..bf98cb1 --- /dev/null +++ b/.vim/ftplugin/python.vim @@ -0,0 +1,6 @@ + +" python tab expand settings +setlocal tabstop=4 +setlocal expandtab +setlocal shiftwidth=4 +setlocal softtabstop=4 diff --git a/.vimrc b/.vimrc index 6aeba72..05dbad9 100644 --- a/.vimrc +++ b/.vimrc @@ -28,6 +28,8 @@ Plugin 'vimwiki/vimwiki' Plugin 'spiiph/vim-space' Plugin 'terryma/vim-multiple-cursors' Plugin 'Shougo/vimproc.vim' +Plugin 'tpope/vim-fugitive' +Plugin 'tpope/vim-surround' " vim-scripts repos Plugin 'AutoClose'