nvim: Make molten not lazyload
For some reason molten-nvim fails sometimes when lazy loading. This simply turns lazy load off for the time being but I should instead investigate a little more what is actually causing it.
This commit is contained in:
parent
51145e740a
commit
a5f0698ab0
1 changed files with 26 additions and 0 deletions
|
@ -191,6 +191,32 @@ return {
|
|||
{ "<leader>vn", ":MoltenInfo<cr>" },
|
||||
{ "<localleader>ci", ":MoltenInit<cr>" },
|
||||
},
|
||||
cmd = {
|
||||
"MoltenInfo",
|
||||
"MoltenInit",
|
||||
"MoltenDeinit",
|
||||
"MoltenGoto",
|
||||
"MoltenNext",
|
||||
"MoltenPrev",
|
||||
"MoltenEvaluateLine",
|
||||
"MoltenEvaluateVisual",
|
||||
"MoltenEvaluateOperator",
|
||||
"MoltenEvaluateArgument",
|
||||
"MoltenReevaluateCell",
|
||||
"MoltenDelete",
|
||||
"MoltenShowOutput",
|
||||
"MoltenHideOutput",
|
||||
"MoltenEnterOutput",
|
||||
"MoltenInterrupt",
|
||||
"MoltenOpenInBrowser",
|
||||
"MoltenImagePopup",
|
||||
"MoltenRestart",
|
||||
"MoltenSave",
|
||||
"MoltenLoad",
|
||||
"MoltenExportOutput",
|
||||
"MoltenImportOutput",
|
||||
},
|
||||
lazy = false,
|
||||
},
|
||||
|
||||
-- Edit code blocks in md/quarto using whatever language is
|
||||
|
|
Loading…
Reference in a new issue