vim setting from python
python 用のvimの設定。
expandtab と 4tabだとこんな感じ。
ファイルタイプ別lpluginを有効化
$HOME/.vimrc:filetype plugin on
python(.py)のfiletypeを規定
$HOME/.vim/filetype.vimaugroup filetypedetect au BufRead,BufNewFile *.py setfiletype python augroup END
pythonのexpandtab と 4tab設定
$HOME/.vim/ftplugin/python.vimset expandtab set ts=4 set tabstop=4 set shiftwidth=4