mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 12:24:28 +02:00
plugins/utils: move to by-name
This commit is contained in:
parent
faff32b9f1
commit
52f125679f
195 changed files with 2 additions and 102 deletions
|
@ -1,47 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.emmet.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.emmet = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
mode = "inv";
|
||||
leader = "<C-Z>";
|
||||
settings = {
|
||||
variables = {
|
||||
lang = "ja";
|
||||
};
|
||||
html = {
|
||||
default_attributes = {
|
||||
option = {
|
||||
value = null;
|
||||
};
|
||||
textarea = {
|
||||
id = null;
|
||||
name = null;
|
||||
cols = 10;
|
||||
rows = 10;
|
||||
};
|
||||
};
|
||||
snippets = {
|
||||
"html:5" = ''
|
||||
<!DOCTYPE html>
|
||||
<html lang=\"$\{lang}\">
|
||||
<head>
|
||||
\t<meta charset=\"$\{charset}\">
|
||||
\t<title></title>
|
||||
\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">
|
||||
</head>
|
||||
<body>\n\t$\{child}|\n</body>
|
||||
</html>
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue