mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 19:40:06 +02:00
misc: remove deprecated instances of types.string
This commit is contained in:
parent
de868adaa3
commit
764a6a8666
2 changed files with 3 additions and 3 deletions
|
@ -574,7 +574,7 @@ in {
|
|||
|
||||
diagnosticSeverity =
|
||||
helpers.defaultNullOpts.mkNullable
|
||||
(with types; either string (attrsOf str))
|
||||
(with types; either str (attrsOf str))
|
||||
"information"
|
||||
''
|
||||
Severity of the diagnostics corresponding to the grammar and spelling errors.
|
||||
|
|
|
@ -106,12 +106,12 @@ in {
|
|||
};
|
||||
|
||||
ignored_filetypes = mkOption {
|
||||
type = with types; listOf string;
|
||||
type = with types; listOf str;
|
||||
default = [];
|
||||
};
|
||||
|
||||
ignored_buffertypes = mkOption {
|
||||
type = with types; listOf string;
|
||||
type = with types; listOf str;
|
||||
default = ["nofile"];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue