mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-21 11:14:40 +02:00
19 lines
357 B
Nix
19 lines
357 B
Nix
lib: {
|
|
deprecateExtraOptions = true;
|
|
imports =
|
|
let
|
|
basePluginPath = [
|
|
"plugins"
|
|
"spider"
|
|
];
|
|
in
|
|
[
|
|
(lib.mkRenamedOptionModule (basePluginPath ++ [ "skipInsignificantPunctuation" ]) (
|
|
basePluginPath
|
|
++ [
|
|
"settings"
|
|
"skipInsignificantPunctuation"
|
|
]
|
|
))
|
|
];
|
|
}
|