From 29af2a26103ca04b9515e00a58dceec365b54609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20ANDR=C3=89-CHANG?= Date: Sun, 19 Jan 2020 14:51:59 +0000 Subject: [PATCH] Enable repo_source for vim config files by default The reason for this is that package managers use repo identifier to locate the plugin. --- autoload/ncm2_github.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ncm2_github.vim b/autoload/ncm2_github.vim index fab5dba..7c27a6c 100644 --- a/autoload/ncm2_github.vim +++ b/autoload/ncm2_github.vim @@ -32,7 +32,7 @@ let g:ncm2_github#repo_source = extend( \ get(g:, 'ncm2_github#repo_source', {}), { \ 'name': 'github-repo', \ 'ready': 0, - \ 'scope': ['gitcommit', 'markdown', 'magit'], + \ 'scope': ['gitcommit', 'markdown', 'magit', 'vim'], \ 'priority': 8, \ 'mark': 'gh', \ 'on_complete': 'ncm2_github#on_complete_repo',