fix: linter
This commit is contained in:
parent
b36b69c4de
commit
39eb7cd853
1 changed files with 2 additions and 7 deletions
|
@ -60,7 +60,7 @@
|
||||||
};
|
};
|
||||||
flake = {
|
flake = {
|
||||||
overlays.default = final: prev: let
|
overlays.default = final: prev: let
|
||||||
lib = final.lib;
|
inherit (final) lib;
|
||||||
in {
|
in {
|
||||||
mk-luarc = {
|
mk-luarc = {
|
||||||
# list of plugins that have a /lua directory
|
# list of plugins that have a /lua directory
|
||||||
|
@ -73,12 +73,7 @@
|
||||||
disabled-diagnostics ? [],
|
disabled-diagnostics ? [],
|
||||||
}: let
|
}: let
|
||||||
pluginPackages =
|
pluginPackages =
|
||||||
map (
|
map (x: x.plugin or x)
|
||||||
x:
|
|
||||||
if x ? plugin
|
|
||||||
then x.plugin
|
|
||||||
else x
|
|
||||||
)
|
|
||||||
plugins;
|
plugins;
|
||||||
partitions = builtins.partition (plugin:
|
partitions = builtins.partition (plugin:
|
||||||
plugin.vimPlugin
|
plugin.vimPlugin
|
||||||
|
|
Loading…
Reference in a new issue