feat(config/izvim/plugins/lsp): add quill.nvim

This commit is contained in:
comfysage 2024-12-12 10:41:51 +00:00
parent 52c5344829
commit bd71ce5db7
No known key found for this signature in database
4 changed files with 43 additions and 0 deletions

View file

@ -827,6 +827,26 @@
},
"version": "fe28db286c5cd3feb8e415d9f11cdaaf827e6c5a"
},
"quill-nvim": {
"cargoLocks": null,
"date": "2024-12-10",
"extract": null,
"name": "quill-nvim",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"owner": "comfysage",
"repo": "quill.nvim",
"rev": "08103ea02643a93065fe7dbc4ed22275719fc338",
"sha256": "sha256-SDMoqQwY3cKj5c5wHFdE+G0ZWVIeLjF6DU67tfDfi8w=",
"type": "github"
},
"version": "08103ea02643a93065fe7dbc4ed22275719fc338"
},
"rainbow-delimiters": {
"cargoLocks": null,
"date": "2024-12-10",

12
_sources/generated.nix generated
View file

@ -497,6 +497,18 @@
};
date = "2024-11-17";
};
quill-nvim = {
pname = "quill-nvim";
version = "08103ea02643a93065fe7dbc4ed22275719fc338";
src = fetchFromGitHub {
owner = "comfysage";
repo = "quill.nvim";
rev = "08103ea02643a93065fe7dbc4ed22275719fc338";
fetchSubmodules = false;
sha256 = "sha256-SDMoqQwY3cKj5c5wHFdE+G0ZWVIeLjF6DU67tfDfi8w=";
};
date = "2024-12-10";
};
rainbow-delimiters = {
pname = "rainbow-delimiters";
version = "dc788723f717bdd3041838b8db34cce53c9aa920";

View file

@ -492,4 +492,11 @@ return {
end,
},
{ "guihua.lua" },
{
"quill.nvim",
after = function()
require("quill").setup()
end,
},
}

View file

@ -168,6 +168,10 @@ passthru.start = "true"
fetch.github = "hallerpatrick/py_lsp.nvim"
src.git = "https://github.com/hallerpatrick/py_lsp.nvim"
[quill-nvim]
fetch.github = "comfysage/quill.nvim"
src.git = "https://github.com/comfysage/quill.nvim"
[rainbow-delimiters]
fetch.github = "hiphish/rainbow-delimiters.nvim"
src.git = "https://github.com/hiphish/rainbow-delimiters.nvim"