mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
fix: neocord logo and logo_tooltip
User couldn't set the logo url, also logo_tooltip didn't allow custom string because of the enum.
This commit is contained in:
parent
9ec2de03af
commit
d656834e3d
2 changed files with 3 additions and 3 deletions
|
@ -20,11 +20,11 @@ with lib;
|
|||
`:lua package.loaded.neocord:update()`
|
||||
'';
|
||||
|
||||
logo = helpers.defaultNullOpts.mkEnum ["auto" "url"] "auto" ''
|
||||
logo = helpers.defaultNullOpts.mkStr "auto" ''
|
||||
Update the Logo to the specified option ("auto" or url).
|
||||
'';
|
||||
|
||||
logo_tooltip = helpers.defaultNullOpts.mkEnum ["null" "string"] "null" ''
|
||||
logo_tooltip = helpers.mkNullOrStr ''
|
||||
Sets the logo tooltip
|
||||
'';
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
#General options
|
||||
auto_update = true;
|
||||
logo = "auto";
|
||||
logo_tooltip = null;
|
||||
logo_tooltip = "Nixvim";
|
||||
main_image = "language";
|
||||
client_id = "1157438221865717891";
|
||||
log_level = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue