modules/editor: use patched versions of neoformat and d2-vim plugins

This commit is contained in:
Dmitriy Pleshevskiy 2022-12-01 22:49:56 +03:00
parent a55190101f
commit 3c722fdf44
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
2 changed files with 33 additions and 22 deletions

View File

@ -95,16 +95,17 @@
"d2-vim": {
"flake": false,
"locked": {
"lastModified": 1667932291,
"narHash": "sha256-NgZqZYDgW31/qm6X9AW3IjhNAVOaQHRq6z7y4vANB0g=",
"owner": "terrastruct",
"lastModified": 1669905564,
"narHash": "sha256-/g/j3Ny9GD5jSWziCu4mR6k1YpWSL3oBsTTKVdOZI90=",
"owner": "pleshevskiy",
"repo": "d2-vim",
"rev": "d1cb1e7e22bc0fb4d4034a1b93c2a13cc471acc6",
"rev": "f926fc066cd922c3c65aba9e2eed0b0b9c1567a1",
"type": "github"
},
"original": {
"owner": "terrastruct",
"owner": "pleshevskiy",
"repo": "d2-vim",
"rev": "f926fc066cd922c3c65aba9e2eed0b0b9c1567a1",
"type": "github"
}
},
@ -347,7 +348,9 @@
"lualine-lsp-progress": "lualine-lsp-progress",
"lualine-nvim": "lualine-nvim",
"luasnip": "luasnip",
"neoformat": "neoformat",
"neoformat": [
"neoformat"
],
"nix2lua": "nix2lua",
"nixpkgs": "nixpkgs",
"nlsp-settings-nvim": "nlsp-settings-nvim",
@ -387,11 +390,11 @@
]
},
"locked": {
"lastModified": 1669811327,
"narHash": "sha256-p9eWBOdeR0mSl0w/S5oBaBaucudK9oCn7x6qEbNg3Ig=",
"lastModified": 1669922957,
"narHash": "sha256-YgVI2/16JVX1VPdH0XNjUjhtBfLV2UjH9urmMq8Clpk=",
"ref": "refs/heads/main",
"rev": "911e92f3e1dd7d8e198deb13ec529c0442687ef2",
"revCount": 4,
"rev": "67c16e8ed612d40aee753927e39663b2d848eced",
"revCount": 7,
"type": "git",
"url": "https://git.pleshevski.ru/mynix/tools"
},
@ -403,17 +406,17 @@
"neoformat": {
"flake": false,
"locked": {
"lastModified": 1661997045,
"narHash": "sha256-x+TDVvH0DgmCCjOjhbE2/YaxnjCd4fcPxuQD6bhwVNs=",
"owner": "sbdchd",
"lastModified": 1669902909,
"narHash": "sha256-GpUlWqIdZKDVAwGyzzy/OwjRrxfzYfmyxYYJwGXP0Qg=",
"owner": "pleshevskiy",
"repo": "neoformat",
"rev": "0ae951121da29a157d80db70c32679b428afffdc",
"rev": "97835cd5fdc0f7589348ec4c9426a89bd9ee0048",
"type": "github"
},
"original": {
"owner": "sbdchd",
"owner": "pleshevskiy",
"repo": "neoformat",
"rev": "0ae951121da29a157d80db70c32679b428afffdc",
"rev": "97835cd5fdc0f7589348ec4c9426a89bd9ee0048",
"type": "github"
}
},
@ -647,6 +650,7 @@
"mailserver": "mailserver",
"myneovim": "myneovim",
"mytools": "mytools",
"neoformat": "neoformat",
"nil": "nil",
"nixpkgs": "nixpkgs_2",
"vnetod": "vnetod",

View File

@ -29,7 +29,19 @@
};
# my neovim configuration
myneovim.url = "git+https://git.pleshevski.ru/mynix/neovim";
d2-vim = {
# url = "github:terrastruct/d2-vim";
url = "github:pleshevskiy/d2-vim?rev=f926fc066cd922c3c65aba9e2eed0b0b9c1567a1";
flake = false;
};
neoformat = {
url = "github:pleshevskiy/neoformat?rev=97835cd5fdc0f7589348ec4c9426a89bd9ee0048";
flake = false;
};
myneovim = {
url = "git+https://git.pleshevski.ru/mynix/neovim";
inputs.neoformat.follows = "neoformat";
};
# my nix tools
mytools = {
url = "git+https://git.pleshevski.ru/mynix/tools";
@ -49,11 +61,6 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.utils.follows = "flake-utils";
};
d2-vim = {
url = "github:terrastruct/d2-vim";
flake = false;
};
};
outputs = inputs @ { self, flake-utils, nixpkgs, ... }: