File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
tests/test-sources/plugins/git Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,12 @@ helpers.vim-plugin.mkVimPlugin config {
1313
1414 maintainers = [ lib . maintainers . GaetanLepage ] ;
1515
16+ extraConfig = cfg : {
17+ # mini.nvim and fugitive have duplicate doc tags
18+ performance . combinePlugins . standalonePlugins = lib . mkIf (
19+ config . performance . combinePlugins . enable && config . plugins . mini . enable
20+ ) [ cfg . package ] ;
21+ } ;
22+
1623 # In typical tpope fashion, this plugin has no config options
1724}
Original file line number Diff line number Diff line change 1+ {
2+ empty = {
3+ plugins . fugitive . enable = true ;
4+ } ;
5+
6+ # combinePlugins when both mini.nvim and fugitive.vim are installed
7+ combine-plugins = {
8+ plugins = {
9+ fugitive . enable = true ;
10+ mini . enable = true ;
11+ } ;
12+
13+ performance . combinePlugins . enable = true ;
14+ } ;
15+ }
You can’t perform that action at this time.
0 commit comments