Files
mould-rs/plugin/mould.lua
Nils Pukropp 7aa45974a7
All checks were successful
Version Check / check-version (pull_request) Successful in 4s
fixed ui and themes for tree view + neovim plugin wrapper
2026-03-17 12:23:10 +01:00

9 lines
201 B
Lua

if vim.g.loaded_mould == 1 then
return
end
vim.g.loaded_mould = 1
vim.api.nvim_create_user_command("Mould", function()
require("mould").open()
end, { desc = "Open mould for the current buffer" })