dotfiles/nvim/dein.vim

45 lines
1.2 KiB
VimL

"dein Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/home/oct2pus/.local/share/dein/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('/home/oct2pus/.local/share/dein')
call dein#begin('/home/oct2pus/.local/share/dein')
" Let dein manage dein
" Required:
call dein#add('/home/oct2pus/.local/share/dein/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here like this:
call dein#add('dag/vim-fish')
call dein#add('scrooloose/nerdtree')
call dein#add('itchyny/lightline.vim')
call dein#add('chriskempson/base16-vim')
call dein#add('daviesjamie/vim-base16-lightline')
call dein#add('fatih/vim-go')
call dein#add('tpope/vim-endwise')
call dein#add('vim-ruby/vim-ruby')
call dein#add('tpope/vim-fugitive')
call dein#add('Shougo/deoplete.nvim')
call dein#add('andmatand/vim-pico8-syntax')
" Required:
call dein#end()
call dein#save_state()
endif
" Required:
filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
"End dein Scripts-------------------------