We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc0c48 commit 0ad87f5Copy full SHA for 0ad87f5
lua/astrocommunity/code-runner/mf-runner-nvim/README.md
@@ -0,0 +1,5 @@
1
+# mf-runner.nvim
2
+
3
+code runner based off of Makefiles because it's the easiest and one of the most common formats.
4
5
+**Repository:** <https://github.com/burgr033/mf-runner.nvim>
lua/astrocommunity/code-runner/mf-runner-nvim/init.lua
@@ -0,0 +1,19 @@
+return {
+ "burgr033/mf-runner.nvim",
+ cmd = { "MFROpen", "MFRRun", "MFREdit" },
+ dependencies = {
+ { "folke/snacks.nvim" },
6
+ {
7
+ "AstroNvim/astrocore",
8
+ opts = {
9
+ mappings = {
10
+ n = {
11
+ ["<Leader>Rr"] = { "<Cmd>MFROpen<CR>", desc = "mf-runner: open" },
12
+ ["<Leader>Re"] = { "<Cmd>MFREdit<CR>", desc = "mf-runner: edit Makefile" },
13
+ },
14
15
16
17
18
+ opts = {},
19
+}
0 commit comments