mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 21:45:59 +01:00
dev: remove unused defaults
This commit is contained in:
parent
a5d93bedf9
commit
bb6b138027
2 changed files with 11 additions and 16 deletions
|
@ -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];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue