feat: new plugin comfysage/sayama.nvim

This commit is contained in:
isabel 2024-06-07 22:14:30 +01:00
parent be8f1c366a
commit e8ddf2c8c5
No known key found for this signature in database
GPG key ID: 5A87C993E20D89A1
4 changed files with 44 additions and 1 deletions

View file

@ -859,6 +859,26 @@
},
"version": "d69653afc99e9c0cb6be0d1f26499a787f00a78d"
},
"sayama-nvim": {
"cargoLocks": null,
"date": "2024-05-30",
"extract": null,
"name": "sayama-nvim",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"owner": "comfysage",
"repo": "sayama.nvim",
"rev": "39175a766dfc80324d3130d27c3e7922f826226e",
"sha256": "sha256-Rxjg6RvcN5JOP5CTv7Jj7AQJv36zRMaHiFEwhiBVgfw=",
"type": "github"
},
"version": "39175a766dfc80324d3130d27c3e7922f826226e"
},
"schemastore": {
"cargoLocks": null,
"date": "2024-06-05",

12
_sources/generated.nix generated
View file

@ -517,6 +517,18 @@
};
date = "2024-06-05";
};
sayama-nvim = {
pname = "sayama-nvim";
version = "39175a766dfc80324d3130d27c3e7922f826226e";
src = fetchFromGitHub {
owner = "comfysage";
repo = "sayama.nvim";
rev = "39175a766dfc80324d3130d27c3e7922f826226e";
fetchSubmodules = false;
sha256 = "sha256-Rxjg6RvcN5JOP5CTv7Jj7AQJv36zRMaHiFEwhiBVgfw=";
};
date = "2024-05-30";
};
schemastore = {
pname = "schemastore";
version = "d9fd6651b47b68bfc1b952f81a0fdded3cb205b2";

View file

@ -172,6 +172,10 @@ src.git = "https://github.com/mrcjkb/rustaceanvim"
fetch.github = "rust-lang/rust.vim"
src.git = "https://github.com/rust-lang/rust.vim"
[sayama-nvim]
fetch.github = "comfysage/sayama.nvim"
src.git = "https://github.com/comfysage/sayama.nvim"
[schemastore]
fetch.github = "b0o/schemastore.nvim"
src.git = "https://github.com/b0o/schemastore.nvim"

View file

@ -18,6 +18,7 @@ rec {
# tree view
nvim-tree = {
src = srcs.nvim-tree-lua;
event = "VeryLazy";
config = {
sync_root_with_cwd = true;
diagnostics.enable = true;
@ -367,10 +368,16 @@ rec {
# event = "VeryLazy";
# };
# cool snippets saving
sayama-nvim = {
src = srcs.sayama-nvim;
config.dir = "$XDG_DATA_HOME/zzz";
};
freeze = {
src = srcs.freeze-nvim;
paths = [ pkgs.charm-freeze ];
event = "VeryLazy";
lazy = true;
config = ./freeze.lua;
};