@@ -62,61 +62,33 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
62
62
"enabled"
63
63
]
64
64
) ( 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
+ ) )
72
68
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "enableLastSession" ] ) (
73
- settingsPath
74
- ++ [
75
- "auto_restore_last_session"
76
- ]
69
+ settingsPath ++ [ "auto_restore_last_session" ]
77
70
) )
78
71
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "rootDir" ] ) (
79
- settingsPath
80
- ++ [
81
- "root_dir"
82
- ]
72
+ settingsPath ++ [ "root_dir" ]
83
73
) )
84
74
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "enabled" ] ) (
85
- settingsPath
86
- ++ [
87
- "enabled"
88
- ]
75
+ settingsPath ++ [ "enabled" ]
89
76
) )
90
77
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "createEnabled" ] ) (
91
- settingsPath
92
- ++ [
93
- "auto_create"
94
- ]
78
+ settingsPath ++ [ "auto_create" ]
95
79
) )
96
80
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "suppressDirs" ] ) (
97
- settingsPath
98
- ++ [
99
- "suppressed_dirs"
100
- ]
81
+ settingsPath ++ [ "suppressed_dirs" ]
101
82
) )
102
83
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "allowedDirs" ] ) (
103
- settingsPath
104
- ++ [
105
- "allowed_dirs"
106
- ]
84
+ settingsPath ++ [ "allowed_dirs" ]
107
85
) )
108
86
( lib . mkRenamedOptionModule ( nestedAutoSessionPluginPath ++ [ "useGitBranch" ] ) (
109
- settingsPath
110
- ++ [
111
- "use_git_branch"
112
- ]
87
+ settingsPath ++ [ "use_git_branch" ]
113
88
) )
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
+ '' )
120
92
] ;
121
93
122
94
settingsOptions = {
0 commit comments