zoukankan      html  css  js  c++  java
  • VIM配置以及VIM插件的安装

    配置:

    http://www.ruanyifeng.com/blog/2018/09/vimrc.html

    set number
    syntax on 
    set showmode
    set showcmd  
    set mouse=a 
    set encoding=utf-8
    set t_Co=256
    filetype indent on
    set autoindent
    set tabstop=4
    set shiftwidth=4
    set expandtab
    set softtabstop=4
    set textwidth=80
    set wrap
    set linebreak
    set wrapmargin=2
    set scrolloff=5 
    set laststatus=2 
    set  ruler
    set showmatch
    set hlsearch
    set incsearch
    set ignorecase 
    set smartcase 
    set spell spelllang=en_us 
    set undofile
    set autochdir 
    set visualbell 
    set history=1000
    set autoread
    set listchars=tab:»■,trail:■
    set list
    set wildmenu
    set wildmode=longest:list,full
    set cursorline

    插件:

    https://github.com/junegunn/vim-plug

    Windows下安装

    https://jingyan.baidu.com/article/7082dc1cddd0a3e40a89bdf2.html

  • 相关阅读:
    各种小知识
    基础技能
    st表
    有理数取余
    FFT加速高精度乘法
    unique
    离散化
    线段树复杂度分析
    楼房重建
    电脑装系统常用方法
  • 原文地址:https://www.cnblogs.com/wybert/p/14272750.html
Copyright © 2011-2022 走看看