vim环境配置之Syntastic

时间:2022-07-03 10:06:55

简介:

Syntastic插件是一个支持语法检测和编码风格检测的插件。


下载与安装:

方法一:

可以从网站https://github.com/scrooloose/syntastic下载

方法2:

通过vundle管理(推荐用这个方法)

filetype off

" Vundle Config Manager
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin("~/.vim/bundle")

Plugin 'scrooloose/syntastic'

call vundle#end()

filetype on
filetype plugin on
filetype plugin indent on


通过vundle管理,方便在换系统的时候只要有~/.vimrc的备份就行了,不用再一次次的安装插件。