mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/emmet: use nestedLiteralLua
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
79d53a50e2
commit
dfdc4aebfb
1 changed files with 4 additions and 4 deletions
|
|
@ -4,7 +4,7 @@
|
|||
}:
|
||||
let
|
||||
inherit (lib) types;
|
||||
inherit (lib.nixvim) defaultNullOpts mkNullOrOption;
|
||||
inherit (lib.nixvim) defaultNullOpts mkNullOrOption nestedLiteralLua;
|
||||
in
|
||||
lib.nixvim.plugins.mkVimPlugin {
|
||||
name = "emmet";
|
||||
|
|
@ -49,11 +49,11 @@ lib.nixvim.plugins.mkVimPlugin {
|
|||
html = {
|
||||
default_attributes = {
|
||||
option = {
|
||||
value = null;
|
||||
value = nestedLiteralLua "nil";
|
||||
};
|
||||
textarea = {
|
||||
id = null;
|
||||
name = null;
|
||||
id = nestedLiteralLua "nil";
|
||||
name = nestedLiteralLua "nil";
|
||||
cols = 10;
|
||||
rows = 10;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue