Browse Source

remove vim-scripts plugins

coc
Schneider 7 years ago
parent
commit
a1876c30da
  1. 8
      vimrc.symlink

8
vimrc.symlink

@ -16,8 +16,6 @@ Plug 'VundleVim/Vundle.vim'
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plug 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plug 'L9'
" Git plugin not hosted on GitHub
Plug 'tpope/vim-sensible'
@ -32,7 +30,7 @@ Plug 'Shougo/neosnippet-snippets'
Plug 'easymotion/vim-easymotion'
Plug 'bling/vim-airline'
Plug 'tpope/vim-ragtag'
Plug 'surround.vim'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'vim-syntastic/syntastic'
Plug 'altercation/vim-colors-solarized'
@ -74,6 +72,10 @@ Plug 'cespare/vim-toml', { 'for': 'toml' }
Plug 'bitc/vim-hdevtools', { 'for': 'haskell' }
Plug 'nbouscal/vim-stylish-haskell', { 'for': 'haskell' }
" C/C++
Plug 'Rip-Rip/clang_complete', { 'for': ['c', 'cpp'], 'do': 'make install' }
let g:clang_library_path='/usr/lib/llvm-4.0/lib/libclang-4.0.so.1'
set wildignore+=node_modules
" All of your Plugins must be added before the following line

Loading…
Cancel
Save