1
Fork 0

Added a basic readme

This commit is contained in:
Matei Adriel 2023-01-11 10:19:49 +01:00
parent 490f562d85
commit 8b12288df6
No known key found for this signature in database
4 changed files with 34 additions and 24 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -1,20 +0,0 @@
local M = {}
-- function M.setup()
-- require("moonwalk").add_loader("tl", function(src, path)
-- local tl = require("tl")
-- local errs = {}
-- local _, program = tl.parse_program(tl.lex(src), errs)
--
-- if #errs > 0 then
-- error(
-- path .. ":" .. errs[1].y .. ":" .. errs[1].x .. ": " .. errs[1].msg,
-- 0
-- )
-- end
--
-- return tl.pretty_print_ast(program)
-- end)
-- end
return M