vim setting from python

投稿日:

python 用のvimの設定。
expandtab と 4tabだとこんな感じ。

ファイルタイプ別lpluginを有効化

$HOME/.vimrc
:filetype plugin on

python(.py)のfiletypeを規定

$HOME/.vim/filetype.vim
augroup filetypedetect
  au BufRead,BufNewFile *.py setfiletype python
augroup END

pythonのexpandtab と 4tab設定

$HOME/.vim/ftplugin/python.vim
set expandtab
set ts=4
set tabstop=4
set shiftwidth=4