summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunwox <me@unwox.com>2024-10-10 11:51:45 +0600
committerunwox <me@unwox.com>2024-10-10 11:51:45 +0600
commit9d1b193640c039f7300b44dd30def266cbc31a85 (patch)
treef6ffef7c91d9d8603c914705d982be77e4b32d2f
parentdfcdaab3a84389e610a57fa82ee0d3a216f4821d (diff)
update .nvim.lua
-rw-r--r--.nvim.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/.nvim.lua b/.nvim.lua
index 1052fad..f5569e3 100644
--- a/.nvim.lua
+++ b/.nvim.lua
@@ -1,8 +1,11 @@
vim.repl = {
configs = {
fennel = {
- cmd = {"./run.sh", "serve", "--puc"},
+ cmd = {"fennel"},
filters = {},
}
}
}
+
+vim.keymap.set("n", ",tf", ":!./run.sh fetch --jit<cr>")
+vim.keymap.set("n", ",t", ":!./run.sh serve --jit<cr>")