Add competitest
This commit is contained in:
parent
5e9b8f8325
commit
0753f30061
17
flake.lock
17
flake.lock
|
|
@ -1,5 +1,21 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"competitest-nvim": {
|
||||||
|
"flake": false,
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1706007708,
|
||||||
|
"narHash": "sha256-ABxdZ98W5W6K0rz0z/1I5lXzLCBnth6ozUUQ1W1nvpo=",
|
||||||
|
"owner": "xeluxee",
|
||||||
|
"repo": "competitest.nvim",
|
||||||
|
"rev": "c3cb0e2b0916a879c4d3dcb5737e6c046dd0afc5",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "xeluxee",
|
||||||
|
"repo": "competitest.nvim",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"flake-compat": {
|
"flake-compat": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
@ -261,6 +277,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"competitest-nvim": "competitest-nvim",
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
"gopher-nvim": "gopher-nvim",
|
"gopher-nvim": "gopher-nvim",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,10 @@
|
||||||
url = "github:kawre/leetcode.nvim";
|
url = "github:kawre/leetcode.nvim";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
competitest-nvim = {
|
||||||
|
url = "github:xeluxee/competitest.nvim";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, ... }:
|
outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, ... }:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
local competitest = require("competitest")
|
||||||
|
competitest.setup({
|
||||||
|
received_files_extension = "rs",
|
||||||
|
})
|
||||||
|
|
@ -81,6 +81,7 @@ let
|
||||||
which-key-nvim
|
which-key-nvim
|
||||||
harpoon
|
harpoon
|
||||||
(mkNeovimPlugin inputs.leetcode-nvim "leetcode.nvim")
|
(mkNeovimPlugin inputs.leetcode-nvim "leetcode.nvim")
|
||||||
|
(mkNeovimPlugin inputs.competitest-nvim "competitest.nvim")
|
||||||
];
|
];
|
||||||
|
|
||||||
plugins = builtins.concatLists [
|
plugins = builtins.concatLists [
|
||||||
|
|
|
||||||
Reference in New Issue