summaryrefslogtreecommitdiff
path: root/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-02-17 07:27:34 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-02-17 07:27:34 +0900
commit6560acee5bf5fce09b6ced1c9a3d3d111459878d (patch)
tree9b302723b65f8528384cc9dd1fb5a16dfa90d6e1 /ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua
parent71e64c59943ba857d8ad5de5e0b5f096af190fbc (diff)
modified core/autocmds.lua, modified plugins/markdown.lua, modified lf/lfrc, modified venvs/default-requirements.txt
Diffstat (limited to 'ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua')
-rw-r--r--ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua
index a7c26b8..feb3b98 100644
--- a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua
+++ b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/markdown.lua
@@ -315,8 +315,10 @@ return {
command = "QuartoActivate",
config = function()
require("quarto").setup({
+ debug = false,
+ closePreviewOnExit = true,
lspFeatures = {
- languages = { "r", "python", "rust", "lua" },
+ languages = { "r", "python", "rust" },
chunks = "all",
diagnostics = {
enabled = true,
@@ -348,10 +350,13 @@ return {
vim.keymap.set("n", "<leader>jC", runner.run_above, { silent = true, desc = "Run above cell" })
vim.keymap.set("n", "<leader>jl", runner.run_line, { silent = true, desc = "Run line" })
vim.keymap.set("v", "<leader>jv", runner.run_range, { silent = true, desc = "Run block" })
- vim.keymap.set("n", "<leader>jA", runner.run_all, { silent = true, desc = "Run all" })
+ vim.keymap.set("n", "<leader>ja", runner.run_all, { silent = true, desc = "Run all" })
+ vim.keymap.set("n", "<leader>jA", function()
+ runner.run_all(true)
+ end, { desc = "run all cells of all languages", silent = true })
vim.keymap.set(
"n",
- "<leader>qp",
+ "<leader>jp",
require("quarto").quartoPreview,
{ noremap = true, silent = true, desc = "Preview the quarto document" }
)