mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-24 04:35:08 +02:00
lib: remove nixvimTypes
alias
This commit is contained in:
parent
bafc6308f6
commit
2f49c76a6a
59 changed files with 261 additions and 278 deletions
|
@ -53,7 +53,7 @@ in
|
|||
'';
|
||||
|
||||
data = mkOption {
|
||||
type = helpers.nixvimTypes.maybeRaw (with types; nullOr str);
|
||||
type = with types; nullOr (maybeRaw str);
|
||||
default = null;
|
||||
example = "/home/YOUR_USERNAME/.cache/jdtls/workspace";
|
||||
description = ''
|
||||
|
@ -64,7 +64,7 @@ in
|
|||
};
|
||||
|
||||
configuration = mkOption {
|
||||
type = helpers.nixvimTypes.maybeRaw (with types; nullOr str);
|
||||
type = with types; nullOr (maybeRaw str);
|
||||
default = null;
|
||||
example = "/home/YOUR_USERNAME/.cache/jdtls/config";
|
||||
description = "Path to the configuration file.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue