mirror of
https://github.com/isabelroses/nvim.git
synced 2025-04-09 13:29:34 +00:00
feat: new plugin comfysage/sayama.nvim
This commit is contained in:
parent
be8f1c366a
commit
e8ddf2c8c5
4 changed files with 44 additions and 1 deletions
20
_sources/generated.json
generated
20
_sources/generated.json
generated
|
@ -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
12
_sources/generated.nix
generated
|
@ -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";
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue