Add competitest
This commit is contained in:
parent
5e9b8f8325
commit
0753f30061
17
flake.lock
17
flake.lock
|
|
@ -1,5 +1,21 @@
|
|||
{
|
||||
"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": false,
|
||||
"locked": {
|
||||
|
|
@ -261,6 +277,7 @@
|
|||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"competitest-nvim": "competitest-nvim",
|
||||
"flake-utils": "flake-utils",
|
||||
"gopher-nvim": "gopher-nvim",
|
||||
"home-manager": "home-manager",
|
||||
|
|
|
|||
|
|
@ -17,6 +17,10 @@
|
|||
url = "github:kawre/leetcode.nvim";
|
||||
flake = false;
|
||||
};
|
||||
competitest-nvim = {
|
||||
url = "github:xeluxee/competitest.nvim";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
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
|
||||
harpoon
|
||||
(mkNeovimPlugin inputs.leetcode-nvim "leetcode.nvim")
|
||||
(mkNeovimPlugin inputs.competitest-nvim "competitest.nvim")
|
||||
];
|
||||
|
||||
plugins = builtins.concatLists [
|
||||
|
|
|
|||
Reference in New Issue