参考了三篇文章:
1、安装Vundle
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
2、配置 ~/.vimrc
set nocompatible
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" status bar
Plugin 'bling/vim-airline'
"JavaScript Syntax
Plugin 'othree/yajs.vim'
" CSS color
Plugin 'gorodinskiy/vim-coloresque'
call vundle#end()
filetype plugin indent on " required
set mouse=a
原文地址:https://www.cnblogs.com/py520ziyi/p/10618399.html
时间: 2024-10-14 14:59:20