fixed ui and themes for tree view + neovim plugin wrapper
All checks were successful
Version Check / check-version (pull_request) Successful in 4s

This commit is contained in:
2026-03-17 12:23:10 +01:00
parent 0ce858da5c
commit 7aa45974a7
14 changed files with 696 additions and 323 deletions

8
plugin/mould.lua Normal file
View File

@@ -0,0 +1,8 @@
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" })