dev: remove unused defaults

This commit is contained in:
NotAShelf 2023-07-30 12:31:56 +03:00
parent a5d93bedf9
commit bb6b138027
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
2 changed files with 11 additions and 16 deletions

View file

@ -392,14 +392,12 @@ with builtins; {
}; };
cursorline = mkOption { cursorline = mkOption {
default = false;
description = "Whether to display the cursor line in NvimTree"; description = "Whether to display the cursor line in NvimTree";
type = types.bool; type = types.bool;
}; };
debounceDelay = mkOption { debounceDelay = mkOption {
type = types.int; type = types.int;
default = 100;
description = '' description = ''
Idle milliseconds before some reload / refresh operations. Idle milliseconds before some reload / refresh operations.
Increase if you experience performance issues around screen refresh. Increase if you experience performance issues around screen refresh.
@ -413,9 +411,6 @@ with builtins; {
A table indicates that the view should be dynamically sized based on the A table indicates that the view should be dynamically sized based on the
longest line (previously `view.adaptive_size`). longest line (previously `view.adaptive_size`).
''; '';
default = 30;
type = with types; oneOf [int attrs]; type = with types; oneOf [int attrs];
}; };