File tree Expand file tree Collapse file tree 1 file changed +1
-18
lines changed Expand file tree Collapse file tree 1 file changed +1
-18
lines changed Original file line number Diff line number Diff line change 1
- {
2
- lib ,
3
- pkgs ,
4
- config ,
5
- ...
6
- } :
1
+ { lib , ... } :
7
2
let
8
3
inherit ( lib ) types ;
9
- cfg = config . performance ;
10
4
11
5
pathsToLink = [
12
6
# :h rtp
95
89
} ;
96
90
} ;
97
91
98
- # FIXME: The performance options do not correctly propagate lua module dependencies.
99
- # We can explicitly specify 'plenary-nvim', as it is a very common dependency.
100
- # While this is enough for our test suite to pass, end-users may be affected by other dependencies not covered by our test suite.
101
- #
102
- # See https://github.com/nix-community/nixvim/pull/3099
103
- config . extraPlugins =
104
- lib . mkIf ( cfg . combinePlugins . enable || ( cfg . byteCompileLua . enable && cfg . byteCompileLua . plugins ) )
105
- [
106
- pkgs . vimPlugins . plenary-nvim
107
- ] ;
108
-
109
92
# Set option value with default priority so that values are appended by default
110
93
config . performance . combinePlugins = { inherit pathsToLink ; } ;
111
94
}
You can’t perform that action at this time.
0 commit comments