-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vim-plugins
92 lines (64 loc) · 2.37 KB
/
.vim-plugins
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => PLUGINS
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Plug-in manager for Vim
Plugin 'gmarik/Vundle.vim'
" A tree explorer plugin for vim.
Plugin 'scrooloose/nerdtree.git'
" Vim plugin for intensely orgasmic commenting
Plugin 'scrooloose/nerdcommenter.git'
" A plugin for NERDTree that allows for chmod'ing files
Plugin 'EvanDotPro/nerdtree-chmod'
" Extended matching with %
Plugin 'jwhitley/vim-matchit'
" Quoting/parenthesizing made simple
Plugin 'tpope/vim-surround'
" a Git wrapper so awesome, it should be illegal
Plugin 'tpope/vim-fugitive'
" True Sublime Text style multiple selections for Vim
Plugin 'terryma/vim-multiple-cursors'
" A light and configurable statusline/tabline for Vim
Plugin 'itchyny/lightline.vim'
" Vim plugin, insert or delete brackets, parens, quotes in pair
Plugin 'jiangmiao/auto-pairs'
" Text filtering and alignment
Plugin 'godlygeek/tabular'
" Full path fuzzy file, buffer, tag finder for Vim.
Plugin 'ctrlpvim/ctrlp.vim'
" Vim motions on speed!
Plugin 'easymotion/vim-easymotion'
" Vim Plugin for WordPress Development
Plugin 'dsawardekar/wordpress.vim'
" Improved PHP omnicompletion
Plugin 'shawncplus/phpcomplete.vim'
" Syntax checking hacks for vim
Plugin 'scrooloose/syntastic.git'
" A solid language pack for Vim.
Plugin 'sheerun/vim-polyglot'
" Check PHP files for syntax errors
Plugin 'nrocco/vim-phplint'
" A Vim plugin which shows a git diff in the gutter
Plugin 'airblade/vim-gitgutter'
" Perform all your vim insert mode completions with Tab
Plugin 'ervandew/supertab'
" Custom vim movements for selecting variables in PHP and Ruby
Plugin 'robmiller/vim-movar'
" Simplifies the transition between multiline and single-line code"
Plugin 'AndrewRadev/splitjoin.vim'
" vim plugin to interact with tmux
Plugin 'benmills/vimux'
" A better JSON for Vim
Plugin 'elzr/vim-json'
" A code-completion engine for Vim
Plugin 'Valloric/YouCompleteMe'
"
" The ultimate snippet solution for Vim
Plugin 'SirVer/ultisnips'
" Display number of search matches & index of a current match
Plugin 'google/vim-searchindex'
" Vim plugin that displays tags in a window, ordered by scope
Plugin 'majutsushi/tagbar'
" ansi escape sequences concealed, but highlighted as specified (conceal)
Plugin 'powerman/vim-plugin-AnsiEsc'
" EditorConfig Support
Plugin 'editorconfig/editorconfig-vim'