Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- `init.lua` bootstraps LazyVim, loads `lua/lazy-init.lua`, and wires globals, options, and keymaps.
Sign in to like and favorite skills
init.lua bootstraps LazyVim, loads lua/lazy-init.lua, and wires globals, options, and keymaps.lua/ holds topic modules: globals.lua, options.lua, keymaps.lua, and health checks in health.lua.lua/plugins/<domain>/, grouped by concern (coding, ui, test); prefer new files over growing monoliths.lazy-lock.json pins plugin commits; update it via :Lazy sync and commit the resulting diff when dependencies change.stylua.toml defines the formatting contract for all Lua code here.nvim --headless "+Lazy sync" +qa after dependency edits to install or update plugins deterministically.nvim --headless "+Lazy clean" +qa before submitting to prune unused specs and catch accidental renames.nvim --headless "+checkhealth" +qa; investigate any failing sections in lua/health.lua.stylua lua/ init.lua before committing.stylua.toml: 2-space indentation, Unix line endings, and prefer single quotes unless Lua interpolation requires double quotes.lua/plugins/coding/conform.lua).opts tables.lua/plugins/test/core.lua): <leader>tt runs the current file, <leader>tr runs the nearest test, and failures flow into Trouble for triage.nvim --headless "+lua require('neotest').run.run(vim.fn.getcwd())" +qa to execute active adapters.lua/plugins/test/ and document external runtime needs alongside the spec.add neotest vitest adapter, tune cmp sources); keep related changes together.lazy-lock.json so reviewers can audit version bumps.:Lazy sync, :checkhealth, Neotest invocations). Attach screenshots or terminal excerpts for UI-affecting changes.CLAUDE.md; apply the same conventions to any agent-specific prompt files you add.lua/plugins/util/ and gate experimental features behind toggles in lua/globals.lua.