refactor: frontmatter for markdown;

feat: plugin for rendering images in markdown;
feat: pastify;
feat: markdown preview in browser
This commit is contained in:
2025-07-04 23:22:13 +03:00
parent bc499db140
commit 67ae99fde0
6 changed files with 126 additions and 17 deletions

View File

@@ -5,6 +5,15 @@ require "nvchad.options"
-- local o = vim.o
-- o.cursorlineopt ='both' -- to enable cursorline!
local enable_providers = {
"python3_provider",
}
for _, plugin in pairs(enable_providers) do
vim.g["loaded_" .. plugin] = nil
vim.cmd("runtime " .. plugin)
end
-- disable wrap
vim.o.wrap = false