nix-community.nixvim/tests/test-sources/plugins/utils/magma-nvim.nix
2024-03-03 22:39:22 +01:00

21 lines
451 B
Nix

{
empty = {
plugins.magma-nvim.enable = true;
};
defaults = {
plugins.magma-nvim = {
enable = true;
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;
};
};
};
}