-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
72 lines (64 loc) · 1.65 KB
/
vimrc
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'HerringtonDarkholme/yats.vim'
Plugin 'easymotion/vim-easymotion'
Plugin 'kchmck/vim-coffee-script'
Plugin 'groenewege/vim-less'
Plugin 'digitaltoad/vim-pug'
Plugin 'hail2u/vim-css3-syntax'
Plugin 'tpope/vim-fugitive'
Plugin 'scrooloose/nerdcommenter'
Plugin 'pangloss/vim-javascript'
Plugin 'mxw/vim-jsx'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'tomasr/molokai'
Plugin 'shougo/neocomplete.vim'
Plugin 'elzr/vim-json'
Plugin 'tpope/vim-markdown'
Plugin 'othree/html5.vim'
Plugin 'jiangmiao/auto-pairs'
Plugin 'ConradIrwin/vim-bracketed-paste'
if v:version < 800
Plugin 'vim-syntastic/syntastic'
else
Plugin 'dense-analysis/ale'
endif
Plugin 'editorconfig/editorconfig-vim'
let g:javascript_plugin_flow = 1
let g:jsx_ext_required = 0
let g:ale_fix_on_save = 1
let g:airline_highlighting_cache = 1
let g:airline_extensions = ['branch', 'ale']
if v:version < 800
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
endif
call vundle#end() " required
filetype plugin indent on " required
syntax on
set laststatus=2
set history=1000
set cursorline
set linespace=0
set backspace=indent,eol,start
set showmatch
set hlsearch
set ignorecase
set smartcase
set wildmenu
set foldenable
set vb
set autoindent
set shiftwidth=2
set expandtab
set tabstop=2
set softtabstop=2
set re=0