" warn if vim-plug is not available if empty(glob('~/.config/nvim/autoload/plug.vim')) echom "Install https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim \ to ~/.config/nvim/autoload/plug.vim" endif call plug#begin('~/.config/nvim/autoload/plugged') " vim colortheme for colorblind Plug 'romainl/vim-dichromatic' " only for nvim! if has('nvim') " colorizes colorcodes Plug 'norcalli/nvim-colorizer.lua' endif call plug#end()