nix-community.nixvim/tests/test-sources/plugins/utils/magma-nvim.nix

23 lines
478 B
Nix
Raw Normal View History

{
# NOTE: broken package
empty = {
plugins.magma-nvim.enable = false;
};
defaults = {
plugins.magma-nvim = {
enable = false;
settings = {
image_provider = "none";
automatically_open_output = true;
wrap_output = true;
output_window_borders = true;
cell_highlight_group = "CursorLine";
save_path.__raw = "vim.fn.stdpath('data') .. '/magma'";
show_mimetype_debug = false;
};
};
};
}