diff options
author | ChristianChiarulli <[email protected]> | 2019-02-17 12:03:58 -0500 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2019-02-17 12:03:58 -0500 |
commit | b8f455cbfb46a2162b1a0bcc8e6d746d65f59179 (patch) | |
tree | e5602b4f90b897f35df69318ff8cf388415cd84e /modules/plugins.vim | |
parent | 7bdd4f7123d815cdad69f9d0ed248da6559b7d08 (diff) |
added stuff for js
Diffstat (limited to 'modules/plugins.vim')
-rw-r--r-- | modules/plugins.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/plugins.vim b/modules/plugins.vim index 4fe4d5ce..debf33d1 100644 --- a/modules/plugins.vim +++ b/modules/plugins.vim @@ -15,6 +15,7 @@ if dein#load_state('~/.config/nvim/dein') " call dein#add('joshdick/onedark.vim') " call dein#add('morhetz/gruvbox') call dein#add('jacoborus/tender.vim') + call dein#add('luochen1990/rainbow') "Interface" call dein#add('Shougo/denite.nvim') " Neoterm @@ -28,6 +29,8 @@ if dein#load_state('~/.config/nvim/dein') call dein#add('vim-airline/vim-airline-themes') " File manager call dein#add('scrooloose/NERDTree') + " Comments " + call dein#add('scrooloose/nerdcommenter') " Icons call dein#add('ryanoasis/vim-devicons') call dein#add('tiagofumo/vim-nerdtree-syntax-highlight') @@ -70,6 +73,15 @@ if dein#load_state('~/.config/nvim/dein') call dein#add('~/.config/nvim/dein/repos/github.com/Shougo/dein.vim') call dein#add('Shougo/deoplete.nvim', {'do': 'UpdateRemotePlugins'}) call dein#add('Shougo/neoinclude.vim') + " Snippets " + call dein#add('Shougo/neosnippet.vim') + call dein#add('Shougo/neosnippet-snippets') + call dein#add('mattn/emmet-vim') + " Colorizer " + call dein#add('chrisbra/Colorizer') + " Python docstring " + call dein#add('heavenshell/vim-pydocstring') + if !has('nvim') call dein#add('roxma/nvim-yarp') call dein#add('roxma/vim-hug-neovim-rpc') |