Vim Plugins for Linux

时间:2023-03-10 05:14:52
Vim Plugins for Linux

Usage

1.Set up Vundle:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

2.Configure Plugins:

Put this at the top of your .vimrc to use Vundle. Remove plugins you don't need, they are for illustration purposes.

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe'             " Autocomplete functions etc
Plugin 'vim-scripts/Auto-Pairs'             " Autocomplete parens/quotes/brackets
Plugin 'vim-scripts/closetag.vim'           " html tag completion and navigation
Plugin 'rking/ag.vim'                       " the_silver_searcher
Plugin 'tomtom/tcomment_vim'                " For easy block commenting
Plugin 'tpope/vim-fugitive'                 " Git integration
Plugin 'JazzCore/ctrlp-cmatcher'            " CtrlP C matching extension
Plugin 'scrooloose/nerdtree'                " Nerdtree allows you to explore your filesystem
Plugin 'scrooloose/syntastic'               " Syntastic for syntax checking
Plugin 'bling/vim-airline'                  " Status and tabline
Plugin 'bling/vim-bufferline'               " Buffer info
Plugin 'altercation/vim-colors-solarized'   " vim solarized
Plugin 'flazz/vim-colorschemes'             " vim colorschemes
Plugin 'kchmck/vim-coffee-script'           " vim coffeescript
Plugin 'vim-scripts/ZoomWin'                " Zoom in and out of panes
Plugin 'airblade/vim-gitgutter'             " Show added and deleted lines
Plugin 'majutsushi/tagbar'                  " Tagbar shows a summary of the class tags
Plugin 'lukaszkorecki/CoffeeTags'           " Tagbar for coffeescript
Plugin 'mattn/emmet-vim'                    " HTML/CSS editing
Plugin 'ap/vim-css-color'                   " CSS Color
Plugin 'ntpeters/vim-better-whitespace'     " Whitespace errors
Plugin 'nathanaelkane/vim-indent-guides'    " Indent guides
Plugin 'sjl/gundo.vim'                      " Visual undo tree
Plugin 'edkolev/tmuxline.vim'               " Tmux status line
Plugin 'terryma/vim-multiple-cursors'       " Multiple cursors
Plugin 'ivanov/vim-ipython'                 " iPython REPL
Plugin 'ctrlpvim/ctrlp.vim'                 " new ctrlp
Plugin 'junegunn/seoul256.vim'              " Seoul color scheme
Plugin 'junegunn/vim-easy-align'            " Alignment
Plugin 'junegunn/goyo.vim'                  " Quiet your vim
Plugin 'junegunn/limelight.vim'             " Focus your vim
Plugin 'junegunn/fzf'                       " Command line Fuzzyfinder in GO
Plugin 'Yggdroot/indentLine'                " Vertical lines showing indentation
Plugin 'pelodelfuego/vim-swoop'             " helm-swoop style
Plugin 'toyamarinyon/vim-swift'             " swift syntax support
Plugin 'leafgarland/typescript-vim'         " typescript syntax support
Plugin 'Quramy/tsuquyomi'                   " typescript OmniCompletion
Plugin 'Shougo/vimproc.vim'                 " interactive shell
Plugin 'pangloss/vim-javascript'            " js syntax
Plugin 'claco/jasmine.vim'                  " jasmine
Plugin 'othree/javascript-libraries-syntax.vim'
Plugin 'honza/vim-snippets'                 " snippets
Plugin 'SirVer/ultisnips'                   " track the engine for snippets
Plugin 'groenewege/vim-less'                " less support
Plugin 'dkprice/vim-easygrep'               " global search and replace

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

3.Install Plugins:

Launch vim and run :PluginInstall