python的vim设置

前端之家收集整理的这篇文章主要介绍了python的vim设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下设置文件
# ~/.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

原文链接:https://www.f2er.com/python/186017.html

猜你在找的Python相关文章