remvoe diaglist
This commit is contained in:
parent
380e738f81
commit
b260ce02d2
3 changed files with 30 additions and 47 deletions
17
flake.lock
17
flake.lock
|
|
@ -37,22 +37,6 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"diaglist-nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1696529653,
|
||||
"narHash": "sha256-/4eb11/8O89YeHf0TSzQpQyCbS0oPyG/QqtVOrFPaOo=",
|
||||
"owner": "JMarkin",
|
||||
"repo": "diaglist.nvim",
|
||||
"rev": "73ace32941fa5db5427f7ef936598072f89ce34a",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "JMarkin",
|
||||
"repo": "diaglist.nvim",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"fenix": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
|
@ -488,7 +472,6 @@
|
|||
"inputs": {
|
||||
"blink-pairs": "blink-pairs",
|
||||
"cmp-diag-codes": "cmp-diag-codes",
|
||||
"diaglist-nvim": "diaglist-nvim",
|
||||
"flake-parts": "flake-parts_2",
|
||||
"gen-luarc": "gen-luarc",
|
||||
"gentags-lua": "gentags-lua",
|
||||
|
|
|
|||
|
|
@ -74,10 +74,10 @@
|
|||
url = "github:JMarkin/cmp-diag-codes";
|
||||
flake = false;
|
||||
};
|
||||
diaglist-nvim = {
|
||||
url = "github:JMarkin/diaglist.nvim";
|
||||
flake = false;
|
||||
};
|
||||
# diaglist-nvim = {
|
||||
# url = "github:JMarkin/diaglist.nvim";
|
||||
# flake = false;
|
||||
# };
|
||||
gentags-lua = {
|
||||
url = "github:JMarkin/gentags.lua?ref=feat/neovim-0.10";
|
||||
flake = false;
|
||||
|
|
|
|||
|
|
@ -1,31 +1,31 @@
|
|||
{ inputs, pkgs, mkNvimPlugin, ... }:
|
||||
with pkgs.vimPlugins; [
|
||||
{
|
||||
plugin = (mkNvimPlugin inputs.diaglist-nvim "diaglist.nvim");
|
||||
type = "lua";
|
||||
optional = true;
|
||||
config = /*lua*/''
|
||||
lze.load{
|
||||
"diaglist.nvim",
|
||||
keys = {
|
||||
{
|
||||
"<space>E",
|
||||
function()
|
||||
require("diaglist").open_all_diagnostics()
|
||||
end,
|
||||
desc = "All Diagnostics",
|
||||
},
|
||||
{
|
||||
"<space>e",
|
||||
function()
|
||||
require("diaglist").open_buffer_diagnostics()
|
||||
end,
|
||||
desc = "Buffer Diagnostics",
|
||||
},
|
||||
},
|
||||
}
|
||||
'';
|
||||
}
|
||||
# {
|
||||
# plugin = (mkNvimPlugin inputs.diaglist-nvim "diaglist.nvim");
|
||||
# type = "lua";
|
||||
# optional = true;
|
||||
# config = /*lua*/''
|
||||
# lze.load{
|
||||
# "diaglist.nvim",
|
||||
# keys = {
|
||||
# {
|
||||
# "<space>E",
|
||||
# function()
|
||||
# require("diaglist").open_all_diagnostics()
|
||||
# end,
|
||||
# desc = "All Diagnostics",
|
||||
# },
|
||||
# {
|
||||
# "<space>e",
|
||||
# function()
|
||||
# require("diaglist").open_buffer_diagnostics()
|
||||
# end,
|
||||
# desc = "Buffer Diagnostics",
|
||||
# },
|
||||
# },
|
||||
# }
|
||||
# '';
|
||||
# }
|
||||
{
|
||||
plugin = quicker-nvim;
|
||||
type = "lua";
|
||||
|
|
|
|||
Loading…
Reference in a new issue