首页 > 系统服务 > 详细

vim8的源码安装和简单配置

时间:2019-05-07 21:40:15      阅读:207      评论:0      收藏:0      [点我收藏+]

编译安装vim8

  1. 下载源码
git clone https://github.com/vim/vim.git /usr/local/src/
  1. 编译安装
./configure --with-features=huge --enable-rubyinterp=yes --enable-pythoninterp=yes --enable-python3interp=yes --enable-multibyte  --with-python-config-dir=/usr/bin/python --with-python-config-dir=/usr/local/bin/python3 --enable-cscope

make && make install
  1. 安装vundle
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

# 配置.vimrc
set nocompatible
filetype off

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

Plugin 'VuldleVim/Vundle.vim'
"Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/nerdtree'
Plugin 'majutsushi/tagbar'
Plugin 'Lokaltog/vim-powerline'
Plugin 'davidhalter/jedi-vim'

call vundle#end()
filetype plugin indent on

vim8的源码安装和简单配置

原文:https://www.cnblogs.com/tmdhhl/p/10828139.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!