nix-community.nixvim/tests/test-sources/plugins/utils/sniprun.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.1 KiB
Nix
Raw Normal View History

2023-03-18 17:23:59 +01:00
{
empty = {
plugins.sniprun.enable = true;
};
default = {
plugins.sniprun = {
enable = true;
selectedInterpreters = [ ];
replEnable = [ ];
replDisable = [ ];
interpreterOptions = { };
display = [
"Classic"
"VirtualTextOk"
];
liveDisplay = [ "VirtualTextOk" ];
displayOptions = {
terminalWidth = 45;
notificationTimeout = 5;
};
showNoOutput = [
"Classic"
"TempFloatingWindow"
];
snipruncolors = {
SniprunVirtualTextOk = {
bg = "#66eeff";
fg = "#000000";
ctermbg = "Cyan";
ctermfg = "Black";
};
SniprunFloatingWinOk = {
fg = "#66eeff";
ctermfg = "Cyan";
};
SniprunVirtualTextErr = {
bg = "#881515";
fg = "#000000";
ctermbg = "DarkRed";
ctermfg = "Black";
};
SniprunFloatingWinErr = {
fg = "#881515";
ctermfg = "DarkRed";
};
};
liveModeToggle = "off";
borders = "single";
};
};
}