From c070964e142398f55c01c00b02f12015d886bd5c Mon Sep 17 00:00:00 2001 From: unwox Date: Thu, 19 Dec 2024 16:36:09 +0600 Subject: small improvements --- .nvim.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to '.nvim.lua') diff --git a/.nvim.lua b/.nvim.lua index 8da22e3..a0e5777 100644 --- a/.nvim.lua +++ b/.nvim.lua @@ -9,11 +9,8 @@ end) vim.api.nvim_create_autocmd({"BufEnter", "BufWinEnter"}, { pattern = {"*.fnl"}, callback = function() - vim.repl.fennel.cmd = {"./run.sh", "serve", "--jit"} + vim.repl.fennel.cmd = {"go", "run", "-tags=fts5,jit", "../.", + "-n", "1", "-D", "main.lua", "bin/serve.fnl"} vim.repl.fennel.filters = {} - vim.opt.lispwords:append("local") - vim.opt.lispwords:append("fn") - vim.opt.lispwords:append("set") - vim.opt.lispwords:append("if") end, }) -- cgit v1.2.3