-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
54 lines (28 loc) · 1.14 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
set guioptions+=a
set clipboard=unnamed
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-fugitive'
Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
Plug 'junegunn/vim-easy-align'
Plug 'https://github.com/StanAngeloff/php.vim'
Plug 'https://github.com/itchyny/lightline.vim'
Plug 'https://github.com/phpactor/phpactor'
Plug 'https://github.com/junegunn/fzf'
Plug 'https://github.com/wincent/ferret'
Plug 'https://github.com/pangloss/vim-javascript'
Plug 'https://github.com/othree/javascript-libraries-syntax.vim'
Plug 'https://github.com/matthewsimo/angular-vim-snippets'
Plug 'https://github.com/leafgarland/typescript-vim'
Plug 'https://github.com/wookiehangover/jshint.vim'
Plug 'https://github.com/prettier/vim-prettier', {
\ 'do': 'yarn install',
\ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue'] }
Plug 'https://github.com/tpope/vim-fugitive'
Plug 'https://github.com/tpope/vim-git'
Plug 'scrooloose/nerdtree'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ericbn/vim-relativize'
call plug#end()
map <C-n> :NERDTreeToggle<CR>
set relativenumber