mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
25 lines
473 B
Nix
25 lines
473 B
Nix
{ lib, ... }:
|
|
let
|
|
basePluginPath = [
|
|
"plugins"
|
|
"neorg"
|
|
];
|
|
in
|
|
{
|
|
imports = [
|
|
(lib.mkRemovedOptionModule (
|
|
basePluginPath
|
|
++ [
|
|
"logger"
|
|
"modes"
|
|
]
|
|
) "Please use `settings.logger.modes` but you now need to provide a list of submodules.")
|
|
(lib.mkRenamedOptionModule (basePluginPath ++ [ "neorgTelescopePackage" ]) (
|
|
basePluginPath
|
|
++ [
|
|
"telescopeIntegration"
|
|
"package"
|
|
]
|
|
))
|
|
];
|
|
}
|