Remove leetcode

This commit is contained in:
Patrick Neff 2024-02-20 10:32:50 +01:00
parent 0753f30061
commit c8de3b7dab
5 changed files with 6 additions and 26 deletions

View File

@ -165,22 +165,6 @@
"type": "indirect"
}
},
"leetcode-nvim": {
"flake": false,
"locked": {
"lastModified": 1708297558,
"narHash": "sha256-VvPH+enqXk06OqinLyr+r/77BBjse/VJQPHUurEspaQ=",
"owner": "kawre",
"repo": "leetcode.nvim",
"rev": "a7386015939d1a88dbfc50dd159d0dd30654b8e4",
"type": "github"
},
"original": {
"owner": "kawre",
"repo": "leetcode.nvim",
"type": "github"
}
},
"neovim-flake": {
"inputs": {
"flake-utils": "flake-utils_2",
@ -281,7 +265,6 @@
"flake-utils": "flake-utils",
"gopher-nvim": "gopher-nvim",
"home-manager": "home-manager",
"leetcode-nvim": "leetcode-nvim",
"neovim-nightly-overlay": "neovim-nightly-overlay",
"nixpkgs": "nixpkgs_3"
}

View File

@ -13,10 +13,6 @@
url = "github:olexsmir/gopher.nvim";
flake = false;
};
leetcode-nvim = {
url = "github:kawre/leetcode.nvim";
flake = false;
};
competitest-nvim = {
url = "github:xeluxee/competitest.nvim";
flake = false;

View File

@ -1,4 +1,10 @@
local competitest = require("competitest")
competitest.setup({
received_files_extension = "rs",
compile_command = {
rust = { exec = "cargo", args = { "build" } },
},
run_command = {
rust = { exec = "cargo", args = { "run" } },
},
})

View File

@ -1,4 +0,0 @@
local leetcode = require("leetcode")
leetcode.setup({
lang = "rust",
})

View File

@ -80,7 +80,6 @@ let
vim-table-mode
which-key-nvim
harpoon
(mkNeovimPlugin inputs.leetcode-nvim "leetcode.nvim")
(mkNeovimPlugin inputs.competitest-nvim "competitest.nvim")
];