zoukankan      html  css  js  c++  java
  • vim8的源码安装和简单配置

    编译安装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
    
    
  • 相关阅读:
    [设计模式]之依赖倒置
    CSS的三种使用方式
    CSS的语法结构
    学习 jQueryMobile 第一个程序
    初识 GoogleMap
    程序员考试
    程序员考试
    CSS学习
    认识CSS
    开始忙一段时间
  • 原文地址:https://www.cnblogs.com/tmdhhl/p/10828139.html
Copyright © 2011-2022 走看看