mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +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
|
let
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
inherit (lib.nixvim) defaultNullOpts mkNullOrOption;
|
inherit (lib.nixvim) defaultNullOpts mkNullOrOption nestedLiteralLua;
|
||||||
in
|
in
|
||||||
lib.nixvim.plugins.mkVimPlugin {
|
lib.nixvim.plugins.mkVimPlugin {
|
||||||
name = "emmet";
|
name = "emmet";
|
||||||
|
|
@ -49,11 +49,11 @@ lib.nixvim.plugins.mkVimPlugin {
|
||||||
html = {
|
html = {
|
||||||
default_attributes = {
|
default_attributes = {
|
||||||
option = {
|
option = {
|
||||||
value = null;
|
value = nestedLiteralLua "nil";
|
||||||
};
|
};
|
||||||
textarea = {
|
textarea = {
|
||||||
id = null;
|
id = nestedLiteralLua "nil";
|
||||||
name = null;
|
name = nestedLiteralLua "nil";
|
||||||
cols = 10;
|
cols = 10;
|
||||||
rows = 10;
|
rows = 10;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue