-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvimrc_simple
More file actions
54 lines (46 loc) · 1.42 KB
/
vimrc_simple
File metadata and controls
54 lines (46 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
set nocompatible
filetype off
call plug#begin('~/.vim/bundle')
" Develop
Plug 'mhinz/vim-signify' " show git diff
Plug 'kana/vim-textobj-user'
Plug 'kana/vim-textobj-function', {'for':['c', 'cpp', 'vim', 'java']}
Plug 'docunext/closetag.vim' , { 'for': ['html', 'xml'] }
Plug 'machakann/vim-sandwich' "surround edit
Plug 'tpope/vim-repeat'
Plug 'dense-analysis/ale'
Plug 'tpope/vim-fugitive'
Plug 'Yggdroot/LeaderF'
Plug 'xavierd/clang_complete'
Plug 'ervandew/supertab'
" Edit Support
Plug 'vim-scripts/DoxygenToolkit.vim'
Plug 'jiangmiao/auto-pairs'
Plug 'danro/rename.vim'
Plug 'scrooloose/nerdcommenter'
Plug 'Lokaltog/vim-easymotion'
Plug 'unblevable/quick-scope' " highlight f match in the line
Plug 'Chiel92/vim-autoformat'
Plug 'bronson/vim-trailing-whitespace'
Plug 'godlygeek/tabular' "vim-easy-align 功能似乎不是很完善
Plug 'junegunn/vim-easy-align'
Plug 'terryma/vim-expand-region'
Plug 'honza/vim-snippets'
Plug 'SirVer/ultisnips'
" Filetype Syntax
Plug 'mattn/emmet-vim', {'for':'html'}
Plug 'sheerun/vim-polyglot'
" UI
Plug '~/.vim/bundle/vim-ctrlspace'
Plug 'skywind3000/vim-preview'
Plug 'skywind3000/quickmenu.vim'
Plug 'rafi/awesome-vim-colorschemes'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'Yggdroot/indentLine'
Plug 'MattesGroeger/vim-bookmarks'
Plug 'kshenoy/vim-signature'
Plug 'kien/rainbow_parentheses.vim'
call plug#end()
filetype plugin indent on
runtime ftplugin/man.vim