From e902a172ef1a58e93eeae0919bddb3578a2142a2 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Mon, 25 Apr 2016 23:07:51 -0400 Subject: vim-patch:7.4.1384 Problem: It is not easy to use a set of plugins and their dependencies. Solution: Add packages, ":loadopt", 'packpath'. https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf --- src/nvim/main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nvim/main.c') diff --git a/src/nvim/main.c b/src/nvim/main.c index 5cd1dbb467..dcfd9b0fdf 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1243,6 +1243,9 @@ static void load_plugins(void) if (p_lpl) { source_runtime((char_u *)"plugin/**/*.vim", TRUE); TIME_MSG("loading plugins"); + + source_packages(); + TIME_MSG("loading packages"); } } -- cgit