Skip to content

Commit 0ad87f5

Browse files
burgr033Uzaaft
andauthored
feat(code-runner): Add mf-runner.nvim (#1388)
* feat(code-runner): added mf-runner.nvim * Update lua/astrocommunity/code-runner/mf-runner-nvim/README.md --------- Co-authored-by: Uzair Aftab <[email protected]>
1 parent 3fc0c48 commit 0ad87f5

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
return {
2+
"burgr033/mf-runner.nvim",
3+
cmd = { "MFROpen", "MFRRun", "MFREdit" },
4+
dependencies = {
5+
{ "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

Comments
 (0)