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