我有以下设置文件:
# ~/.vimrc set tabstop=4 set shiftwidth=4 set smarttab set expandtab set softtabstop=4 set autoindent
我如何才能将这些设置仅应用于python?另外,我如何添加python着色(例如textmate对每种语言都有)?
解决方法
我的配置中有这些行:
filetype plugin indent on Syntax on au BufNewFile,BufRead *.py set tabstop=4 softtabstop=4 shiftwidth=4 expandtab smarttab autoindent
这可能是你正在寻找着色:
Improved Python syntax,Blackboard color scheme