You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
912 B
45 lines
912 B
call g:plug#begin('~/.nvim-plugins')
|
|
|
|
Plug 'bling/vim-airline'
|
|
Plug 'nanotech/jellybeans.vim'
|
|
Plug 'tomasr/molokai'
|
|
Plug 'morhetz/gruvbox'
|
|
Plug 'rakr/vim-one'
|
|
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'sheerun/vim-polyglot'
|
|
Plug 'benekastah/neomake'
|
|
|
|
" Autocompletion
|
|
Plug 'Shougo/deoplete.nvim'
|
|
Plug 'Shougo/neoinclude.vim'
|
|
Plug 'zchee/deoplete-clang'
|
|
Plug 'racer-rust/vim-racer'
|
|
Plug 'jistr/vim-nerdtree-tabs'
|
|
Plug 'scrooloose/nerdtree'
|
|
Plug 'ctrlpvim/ctrlp.vim'
|
|
"Plug 'cloudhead/neovim-fuzzy'
|
|
Plug 'rking/ag.vim'
|
|
Plug 'AndrewRadev/splitjoin.vim'
|
|
|
|
Plug 'tpope/vim-commentary'
|
|
Plug 'easymotion/vim-easymotion'
|
|
Plug 'terryma/vim-multiple-cursors'
|
|
Plug 'Raimondi/delimitMate'
|
|
|
|
" session mgmt
|
|
Plug 'tpope/vim-obsession'
|
|
|
|
" display marks
|
|
Plug 'kshenoy/vim-signature'
|
|
|
|
" tag sidebar
|
|
Plug 'majutsushi/tagbar'
|
|
|
|
|
|
call g:plug#end()
|
|
|
|
for fpath in split(globpath('~/.config/nvim/conf.d', '*.vim'), '\n')
|
|
exe 'source' fpath
|
|
endfor
|