mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2025-01-08 08:37:36 +00:00
Clean Bundles
This commit is contained in:
parent
8205347d1a
commit
24ca2cbef9
@ -6,87 +6,80 @@ call vundle#rc()
|
|||||||
|
|
||||||
" let Vundle manage Vundle
|
" let Vundle manage Vundle
|
||||||
" required!
|
" required!
|
||||||
Bundle 'gmarik/vundle'
|
Plugin 'gmarik/vundle'
|
||||||
|
|
||||||
" Rest of my bundles
|
" Rest of my bundles
|
||||||
|
|
||||||
" -- File Nav --
|
" -- File Nav --
|
||||||
" File tree navigation
|
Plugin 'scrooloose/nerdtree' " File tree navigation
|
||||||
Bundle 'scrooloose/nerdtree'
|
Plugin 'a.vim' " Switch to alternate file
|
||||||
" Switch to alternate file
|
Plugin 'file-line' " Allow opening to a line from file name using :
|
||||||
Bundle 'a.vim'
|
Plugin 'tpope/vim-fugitive' " Git integration
|
||||||
" Allow opening to a line from file name using :
|
|
||||||
Bundle 'file-line'
|
" -- Fuzzy Finders --
|
||||||
" Git integration
|
|
||||||
Bundle 'tpope/vim-fugitive'
|
|
||||||
if ! exists('use_command_t')
|
if ! exists('use_command_t')
|
||||||
let use_command_t = 1
|
let use_command_t = 1
|
||||||
end
|
end
|
||||||
" Needs Vim compiled with Ruby
|
" Needs Vim compiled with Ruby
|
||||||
|
" Quick find files in project
|
||||||
if use_command_t == 1 && has('ruby')
|
if use_command_t == 1 && has('ruby')
|
||||||
" Quick find files in project
|
Plugin 'wincent/Command-T'
|
||||||
Bundle 'wincent/Command-T'
|
|
||||||
else
|
else
|
||||||
" Quick find files in project
|
Plugin 'kien/ctrlp.vim'
|
||||||
Bundle 'kien/ctrlp.vim'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
" -- Buffer Nav --
|
" -- Buffer Nav --
|
||||||
" Quick buffer switching
|
Plugin 'sandeepcr529/Buffet.vim' " Quick buffer switching
|
||||||
Bundle 'sandeepcr529/Buffet.vim'
|
|
||||||
|
|
||||||
" -- Nav in file --
|
" -- Nav in file --
|
||||||
" Ctags file parsing
|
Plugin 'majutsushi/tagbar' " Ctags file parsing
|
||||||
Bundle 'majutsushi/tagbar'
|
Plugin 'scrooloose/syntastic' " Syntax checking
|
||||||
" Syntax checking
|
Plugin 'rking/ag.vim' " Project searching
|
||||||
Bundle 'scrooloose/syntastic'
|
Plugin 'ViViDboarder/QFixToggle' " Easy Toggle of QuickFix window
|
||||||
" Project Searching
|
"Plugin 'mileszs/ack.vim' " Project Searching
|
||||||
"Bundle 'mileszs/ack.vim'
|
|
||||||
Bundle 'rking/ag.vim'
|
|
||||||
" Easy Toggle of QuickFix window
|
|
||||||
Bundle 'ViViDboarder/QFixToggle'
|
|
||||||
|
|
||||||
" -- Text Manipulation --
|
" -- Text Manipulation --
|
||||||
" Easy comments
|
" Easy comments
|
||||||
Bundle 'tomtom/tcomment_vim'
|
Plugin 'tomtom/tcomment_vim'
|
||||||
" Surround for wrapping text
|
Plugin 'tpope/vim-surround' " Surround for wrapping text
|
||||||
Bundle 'tpope/vim-surround'
|
Plugin 'terryma/vim-multiple-cursors' " Multi cursor
|
||||||
" Multi cursor
|
|
||||||
Bundle 'terryma/vim-multiple-cursors'
|
|
||||||
|
|
||||||
" -- GUI --
|
" -- GUI --
|
||||||
Bundle 'gregsexton/MatchTag'
|
Plugin 'gregsexton/MatchTag'
|
||||||
" Custom Status Line
|
Plugin 'bling/vim-airline' " Custom Status Line
|
||||||
Bundle 'bling/vim-airline'
|
|
||||||
"Powerline Config
|
"Powerline Config
|
||||||
"If using a patched font: https://github.com/Lokaltog/vim-powerline/wiki/Patched-fonts
|
"If using a patched font: https://github.com/Lokaltog/vim-powerline/wiki/Patched-fonts
|
||||||
"let g:airline_powerline_fonts = 1
|
"let g:airline_powerline_fonts = 1
|
||||||
|
|
||||||
" -- Sytem --
|
" -- Sytem --
|
||||||
" Allow async make
|
" Allow async make
|
||||||
Bundle 'tpope/vim-dispatch'
|
Plugin 'tpope/vim-dispatch'
|
||||||
|
|
||||||
" -- Themes --
|
" -- Themes --
|
||||||
Bundle 'vividchalk.vim'
|
Plugin 'vividchalk.vim'
|
||||||
Bundle 'wombat256.vim'
|
Plugin 'wombat256.vim'
|
||||||
"Bundle 'BusyBee.vim'
|
Plugin 'nanotech/jellybeans.vim'
|
||||||
Bundle 'nanotech/jellybeans.vim'
|
Plugin 'candy.vim'
|
||||||
"Bundle 'github.vim'
|
Plugin 'therubymug/vim-pyte'
|
||||||
Bundle 'candy.vim'
|
Plugin 'eclipse.vim'
|
||||||
Bundle 'therubymug/vim-pyte'
|
Plugin 'summerfruit256.vim'
|
||||||
Bundle 'eclipse.vim'
|
Plugin 'nuvola.vim'
|
||||||
Bundle 'summerfruit256.vim'
|
Plugin 'altercation/vim-colors-solarized'
|
||||||
Bundle 'nuvola.vim'
|
Plugin 'morhetz/gruvbox'
|
||||||
Bundle 'altercation/vim-colors-solarized'
|
"Plugin 'BusyBee.vim'
|
||||||
Bundle 'morhetz/gruvbox'
|
"Plugin 'github.vim'
|
||||||
|
|
||||||
" -- Filetypes --
|
" -- Filetypes --
|
||||||
Bundle 'ViViDboarder/vim-forcedotcom'
|
Plugin 'ViViDboarder/vim-forcedotcom'
|
||||||
Bundle 'ViViDboarder/vim-abuse-the-force'
|
Plugin 'pdurbin/vim-tsv'
|
||||||
Bundle 'pdurbin/vim-tsv'
|
Plugin 'pangloss/vim-javascript'
|
||||||
"Bundle 'chrisbra/csv.vim'
|
Plugin 'jnwhiteh/vim-golang'
|
||||||
Bundle 'pangloss/vim-javascript'
|
Plugin 'PreserveNoEOL'
|
||||||
Bundle 'PreserveNoEOL'
|
Plugin 'ViViDboarder/vim-android'
|
||||||
|
Plugin 'groovy.vim'
|
||||||
|
Plugin 'tfnico/vim-gradle'
|
||||||
|
"Plugin 'ViViDboarder/vim-abuse-the-force'
|
||||||
|
"Plugin 'chrisbra/csv.vim'
|
||||||
|
|
||||||
" ***************************
|
" ***************************
|
||||||
" Built in settings
|
" Built in settings
|
||||||
|
Loading…
Reference in New Issue
Block a user