mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
plugins/molten: init + test
This commit is contained in:
parent
707054bf23
commit
9b10a38b5c
3 changed files with 240 additions and 0 deletions
30
tests/test-sources/plugins/utils/molten.nix
Normal file
30
tests/test-sources/plugins/utils/molten.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.molten.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.molten = {
|
||||
enable = true;
|
||||
|
||||
autoOpenOutput = true;
|
||||
copyOutput = false;
|
||||
enterOutputBehavior = "open_then_enter";
|
||||
imageProvider = "none";
|
||||
outputCropBorder = true;
|
||||
outputShowMore = false;
|
||||
outputVirtLines = false;
|
||||
outputWinBorder = ["" "━" "" ""];
|
||||
outputWinCoverGutter = true;
|
||||
outputWinHideOnLeave = true;
|
||||
outputWinMaxHeight = 999999;
|
||||
outputWinMaxWidth = 999999;
|
||||
outputWinStyle = false;
|
||||
savePath.__raw = "vim.fn.stdpath('data')..'/molten'";
|
||||
useBorderHighlights = false;
|
||||
virtLinesOffBy1 = false;
|
||||
wrapOutput = false;
|
||||
showMimetypeDebug = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue