mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-02 09:04:54 +02:00
plugins/sniprun: switch to mkNeovimPlugin
This commit is contained in:
parent
b822078ec1
commit
5755ff0958
2 changed files with 242 additions and 137 deletions
|
@ -6,47 +6,57 @@
|
|||
default = {
|
||||
plugins.sniprun = {
|
||||
enable = true;
|
||||
selectedInterpreters = [ ];
|
||||
replEnable = [ ];
|
||||
replDisable = [ ];
|
||||
interpreterOptions = { };
|
||||
display = [
|
||||
"Classic"
|
||||
"VirtualTextOk"
|
||||
];
|
||||
liveDisplay = [ "VirtualTextOk" ];
|
||||
displayOptions = {
|
||||
terminalWidth = 45;
|
||||
notificationTimeout = 5;
|
||||
|
||||
settings = {
|
||||
selected_interpreters = [ ];
|
||||
repl_enable = [ ];
|
||||
repl_disable = [ ];
|
||||
interpreter_options = { };
|
||||
display = [
|
||||
"Classic"
|
||||
"VirtualTextOk"
|
||||
];
|
||||
live_display = [ "VirtualTextOk" ];
|
||||
display_options = {
|
||||
terminal_scrollback.__raw = "vim.o.scrollback";
|
||||
terminal_line_number = false;
|
||||
terminal_signcolumn = false;
|
||||
terminal_position = "vertical";
|
||||
terminal_width = 45;
|
||||
terminal_height = 20;
|
||||
notification_timeout = 5;
|
||||
};
|
||||
show_no_output = [
|
||||
"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";
|
||||
bold = true;
|
||||
};
|
||||
};
|
||||
live_mode_toggle = "off";
|
||||
inline_messages = false;
|
||||
borders = "single";
|
||||
};
|
||||
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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue