Skip to content

Commit

Permalink
rename all 'NeoBundle' to 'Plugin'
Browse files Browse the repository at this point in the history
Signed-off-by: gisphm <[email protected]>
  • Loading branch information
gisphm committed May 5, 2015
1 parent 8fec0bf commit ad4591e
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 104 deletions.
13 changes: 4 additions & 9 deletions vundles/completion.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,9 @@

" Snippets & AutoComplete {{{

NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'honza/vim-snippets'
NeoBundle 'Shougo/neocomplete.vim'
NeoBundle 'Shougo/neosnippet.vim', {
\ 'filetypes' : 'snippet',
\ 'unite_sources' : [
\ 'neosnippet', 'neosnippet/user', 'neosnippet/runtime'
\ ],
\ }
Plugin 'Shougo/neosnippet-snippets'
Plugin 'honza/vim-snippets'
Plugin 'Shougo/neocomplete.vim'
Plugin 'Shougo/neosnippet.vim'

" }}}
10 changes: 5 additions & 5 deletions vundles/css.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

" CSS {{{

NeoBundle 'groenewege/vim-less'
NeoBundle 'JulesWang/css.vim'
NeoBundle 'cakebaker/scss-syntax.vim'
NeoBundle 'ap/vim-css-color'
NeoBundle 'hail2u/vim-css3-syntax'
Plugin 'groenewege/vim-less'
Plugin 'JulesWang/css.vim'
Plugin 'cakebaker/scss-syntax.vim'
Plugin 'ap/vim-css-color'
Plugin 'hail2u/vim-css3-syntax'

" }}}
38 changes: 9 additions & 29 deletions vundles/deps.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,36 +20,16 @@

" Deps {{{

NeoBundle 'Shougo/vimproc.vim', {
\ 'build' : {
\ 'linux' : 'make',
\ },
\ }
NeoBundle 'Shougo/neomru.vim'
NeoBundle 'Shougo/unite.vim', {
\ 'commands' : [{
\ 'name' : 'Unite',
\ 'complete' : 'customlist, unite#complete_source'
\ }],
\ }
NeoBundle 'Shougo/vimfiler.vim', {
\ 'commands' : [
\ {
\ 'name' : ['VimFiler', 'Edit', 'Write'],
\ 'complete' : 'customlist, vimfiler#complete'
\ },
\ 'Read',
\ 'Source'
\ ],
\ 'mappings' : '<Plug>',
\ 'explorer' : 1,
\ }
NeoBundle 'Shougo/unite-outline'
NeoBundle 'Shougo/context_filetype.vim'
NeoBundle 'MarcWeber/vim-addon-mw-utils'
NeoBundle 'tomtom/tlib_vim'
Plugin 'Shougo/vimproc.vim'
Plugin 'Shougo/neomru.vim'
Plugin 'Shougo/unite.vim'
Plugin 'Shougo/vimfiler.vim'
Plugin 'Shougo/unite-outline'
Plugin 'Shougo/context_filetype.vim'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
if executable('ag')
NeoBundle 'rking/ag.vim'
Plugin 'rking/ag.vim'
endif

" }}}
44 changes: 22 additions & 22 deletions vundles/general.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@

" General {{{

NeoBundle 'tpope/vim-surround'
NeoBundle 'tpope/vim-repeat'
NeoBundle 'jiangmiao/auto-pairs'
NeoBundle 'kristijanhusak/vim-multiple-cursors'
NeoBundle 'Firef0x/matchit'
NeoBundle 'bling/vim-airline'
NeoBundle 'Lokaltog/vim-easymotion'
NeoBundle 'flazz/vim-colorschemes'
NeoBundle 'mbbill/undotree'
NeoBundle 'nathanaelkane/vim-indent-guides'
NeoBundle 'vim-scripts/restore_view.vim'
NeoBundle 'tpope/vim-abolish.git'
NeoBundle 'osyo-manga/vim-over'
NeoBundle 'kana/vim-textobj-user'
NeoBundle 'kana/vim-textobj-indent'
NeoBundle 'gcmt/wildfire.vim'
NeoBundle 'godlygeek/tabular'
NeoBundle 'Raimondi/delimitMate'
NeoBundle 'xolox/vim-misc'
NeoBundle 'xolox/vim-session'
NeoBundle 'roman/golden-ratio'
NeoBundle 'kshenoy/vim-signature'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-repeat'
Plugin 'jiangmiao/auto-pairs'
Plugin 'kristijanhusak/vim-multiple-cursors'
Plugin 'Firef0x/matchit'
Plugin 'bling/vim-airline'
Plugin 'Lokaltog/vim-easymotion'
Plugin 'flazz/vim-colorschemes'
Plugin 'mbbill/undotree'
Plugin 'nathanaelkane/vim-indent-guides'
Plugin 'vim-scripts/restore_view.vim'
Plugin 'tpope/vim-abolish.git'
Plugin 'osyo-manga/vim-over'
Plugin 'kana/vim-textobj-user'
Plugin 'kana/vim-textobj-indent'
Plugin 'gcmt/wildfire.vim'
Plugin 'godlygeek/tabular'
Plugin 'Raimondi/delimitMate'
Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-session'
Plugin 'roman/golden-ratio'
Plugin 'kshenoy/vim-signature'

" }}}
8 changes: 4 additions & 4 deletions vundles/html.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

" HTML {{{

NeoBundle 'othree/html5.vim'
NeoBundle 'amirh/HTML-AutoCloseTag'
NeoBundle 'tpope/vim-haml'
NeoBundle 'mattn/emmet-vim'
Plugin 'othree/html5.vim'
Plugin 'amirh/HTML-AutoCloseTag'
Plugin 'tpope/vim-haml'
Plugin 'mattn/emmet-vim'

" }}}
16 changes: 8 additions & 8 deletions vundles/javascript.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@

" Javascript {{{

NeoBundle 'pangloss/vim-javascript'
NeoBundle 'briancollins/vim-jst'
NeoBundle 'kchmck/vim-coffee-script'
NeoBundle 'marijnh/tern_for_vim'
NeoBundle 'Shutnik/jshint2.vim'
NeoBundle 'othree/yajs.vim'
NeoBundle 'othree/javascript-libraries-syntax.vim'
NeoBundle 'othree/jspc.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'briancollins/vim-jst'
Plugin 'kchmck/vim-coffee-script'
Plugin 'marijnh/tern_for_vim'
Plugin 'Shutnik/jshint2.vim'
Plugin 'othree/yajs.vim'
Plugin 'othree/javascript-libraries-syntax.vim'
Plugin 'othree/jspc.vim'

" }}}
16 changes: 8 additions & 8 deletions vundles/misc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@

" Misc {{{

NeoBundle 'rodjek/vim-puppet'
NeoBundle 'elzr/vim-json'
NeoBundle 'othree/xml.vim'
NeoBundle 'dbext.vim'
NeoBundle 'bootleq/LargeFile'
NeoBundle 's3rvac/AutoFenc'
NeoBundle 'antoyo/vim-licenses'
NeoBundle 'chrisbra/csv.vim'
Plugin 'rodjek/vim-puppet'
Plugin 'elzr/vim-json'
Plugin 'othree/xml.vim'
Plugin 'dbext.vim'
Plugin 'bootleq/LargeFile'
Plugin 's3rvac/AutoFenc'
Plugin 'antoyo/vim-licenses'
Plugin 'chrisbra/csv.vim'

" }}}
24 changes: 12 additions & 12 deletions vundles/programming.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@

" Programming {{{

NeoBundle 'tpope/vim-git'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'tpope/vim-dispatch'
NeoBundle 'idanarye/vim-merginal'
NeoBundle 'int3/vim-extradite'
NeoBundle 'scrooloose/syntastic'
NeoBundle 'mhinz/vim-signify'
NeoBundle 'mattn/webapi-vim'
NeoBundle 'mattn/gist-vim'
NeoBundle 'tomtom/tcomment_vim'
Plugin 'tpope/vim-git'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-dispatch'
Plugin 'idanarye/vim-merginal'
Plugin 'int3/vim-extradite'
Plugin 'scrooloose/syntastic'
Plugin 'mhinz/vim-signify'
Plugin 'mattn/webapi-vim'
Plugin 'mattn/gist-vim'
Plugin 'tomtom/tcomment_vim'
if executable('ctags')
NeoBundle 'majutsushi/tagbar'
Plugin 'majutsushi/tagbar'
endif
NeoBundle 'Chiel92/vim-autoformat'
Plugin 'Chiel92/vim-autoformat'

" }}}
14 changes: 7 additions & 7 deletions vundles/writing.vim
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@

" Writing {{{

NeoBundle 'reedes/vim-litecorrect'
NeoBundle 'reedes/vim-textobj-sentence'
NeoBundle 'reedes/vim-textobj-quote'
NeoBundle 'reedes/vim-wordy'
NeoBundle 'reedes/vim-pencil'
NeoBundle 'reedes/vim-lexical'
NeoBundle 'plasticboy/vim-markdown'
Plugin 'reedes/vim-litecorrect'
Plugin 'reedes/vim-textobj-sentence'
Plugin 'reedes/vim-textobj-quote'
Plugin 'reedes/vim-wordy'
Plugin 'reedes/vim-pencil'
Plugin 'reedes/vim-lexical'
Plugin 'plasticboy/vim-markdown'

" }}}

0 comments on commit ad4591e

Please sign in to comment.