mass update

This commit is contained in:
Dario48 2025-10-08 21:24:37 +02:00
commit c613a6d0e3
21 changed files with 361 additions and 128 deletions

View file

@ -0,0 +1,12 @@
-- put this in your init.lua
vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
pattern = { "*.yuck" },
callback = function(event)
print(string.format("starting yuck;s for %s", vim.inspect(event)))
vim.lsp.start({
name = "YuckLs",
cmd = { "yuckls" }, -- if installed from aur
root_dir = vim.fn.getcwd(),
})
end,
})