码迷,mamicode.com
首页 > 编程语言 > 详细

Ubuntu16.04环境下Vim 配置 for HTML,CSS,JAVASCRIPT(1)

时间:2019-03-29 01:15:18      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:插件   include   --   pre   nta   asc   indent   使用   init   

参考了三篇文章:

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

Ubuntu16.04环境下Vim 配置 for HTML,CSS,JAVASCRIPT(1)

标签:插件   include   --   pre   nta   asc   indent   使用   init   

原文地址:https://www.cnblogs.com/py520ziyi/p/10618399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!