mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-28 22:08:46 +02:00
17 lines
288 B
Nix
17 lines
288 B
Nix
lib: {
|
|
deprecateExtraOptions = true;
|
|
optionsRenamedToSettings =
|
|
let
|
|
mkOptionPaths = map (lib.splitString ".");
|
|
in
|
|
mkOptionPaths [
|
|
"mode"
|
|
"preset"
|
|
"maxWidth"
|
|
"symbolMap"
|
|
|
|
"cmp.maxWidth"
|
|
"cmp.ellipsisChar"
|
|
"cmp.menu"
|
|
];
|
|
}
|