diff options
author | Christian Chiarulli <[email protected]> | 2019-02-10 15:17:03 -0500 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2019-02-10 15:17:03 -0500 |
commit | b550a87ceca5449a9687f5861c3e7cb6e7b2bd1a (patch) | |
tree | a5799d2d00f242b2cd197728d70a75515521e2e6 /modules/plugins.vim | |
parent | f7b91819c36603dbbbcf5807200facf1d7367223 (diff) |
began new config
Diffstat (limited to 'modules/plugins.vim')
-rw-r--r-- | modules/plugins.vim | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/plugins.vim b/modules/plugins.vim new file mode 100644 index 00000000..3f55a38c --- /dev/null +++ b/modules/plugins.vim @@ -0,0 +1,33 @@ +" Add the dein installation directory into runtimepath +set runtimepath+=~/.config/nvim/dein/repos/github.com/Shougo/dein.vim + +if dein#load_state('~/.config/nvim/dein') + call dein#begin('~/.config/nvim/dein') + + " Themes + call dein#add('liuchengxu/space-vim-dark') + call dein#add('joshdick/onedark.vim') + call dein#add('morhetz/gruvbox') + call dein#add('jacoborus/tender.vim') + " Better Syntax Support + call dein#add('sheerun/vim-polyglot') + " powerline + call dein#add('vim-airline/vim-airline') + call dein#add('vim-airline/vim-airline-themes') + + call dein#add('~/.config/nvim/dein/repos/github.com/Shougo/dein.vim') + call dein#add('Shougo/deoplete.nvim') + if !has('nvim') + call dein#add('roxma/nvim-yarp') + call dein#add('roxma/vim-hug-neovim-rpc') + endif + + call dein#end() + call dein#save_state() +endif + + +" If you want to install not installed plugins on startup. +if dein#check_install() + call dein#install() +endif |