@@ -62,61 +62,33 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
6262 "enabled"
6363 ]
6464 ) ( settingsPath ++ [ "auto_restore" ] ) )
65-
66- ( lib . mkRenamedOptionModule (
67- basePluginPath
68- ++ [
69- "bypassSessionSaveFileTypes"
70- ]
71- ) ( settingsPath ++ [ "bypass_save_filetypes" ] ) )
65+ ( lib . mkRenamedOptionModule ( basePluginPath ++ [ "bypassSessionSaveFileTypes" ] ) (
66+ settingsPath ++ [ "bypass_save_filetypes" ]
67+ ) )
7268 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "enableLastSession" ] ) (
73- settingsPath
74- ++ [
75- "auto_restore_last_session"
76- ]
69+ settingsPath ++ [ "auto_restore_last_session" ]
7770 ) )
7871 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "rootDir" ] ) (
79- settingsPath
80- ++ [
81- "root_dir"
82- ]
72+ settingsPath ++ [ "root_dir" ]
8373 ) )
8474 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "enabled" ] ) (
85- settingsPath
86- ++ [
87- "enabled"
88- ]
75+ settingsPath ++ [ "enabled" ]
8976 ) )
9077 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "createEnabled" ] ) (
91- settingsPath
92- ++ [
93- "auto_create"
94- ]
78+ settingsPath ++ [ "auto_create" ]
9579 ) )
9680 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "suppressDirs" ] ) (
97- settingsPath
98- ++ [
99- "suppressed_dirs"
100- ]
81+ settingsPath ++ [ "suppressed_dirs" ]
10182 ) )
10283 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "allowedDirs" ] ) (
103- settingsPath
104- ++ [
105- "allowed_dirs"
106- ]
84+ settingsPath ++ [ "allowed_dirs" ]
10785 ) )
10886 ( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "useGitBranch" ] ) (
109- settingsPath
110- ++ [
111- "use_git_branch"
112- ]
87+ settingsPath ++ [ "use_git_branch" ]
11388 ) )
114- ( lib . mkRemovedOptionModule (
115- basePluginPath
116- ++ [
117- "cwdChangeHandling"
118- ]
119- ) ''Please switch to `cwd_change_handling` with just a boolean value.'' )
89+ ( lib . mkRemovedOptionModule ( basePluginPath ++ [ "cwdChangeHandling" ] ) ''
90+ Please switch to `cwd_change_handling` with just a boolean value.
91+ '' )
12092 ] ;
12193
12294 settingsOptions = {
0 commit comments