1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-28 13:11:04 +01:00
nixvim/tests/test-sources/plugins/by-name/magma-nvim/default.nix
Matt Sturgeon 824e048096 tests/fetch-tests: only apply required args
Using `functionArgs` and `intersectAttrs`, apply only the required args
to test module files.
2025-11-24 11:09:51 +00:00

24 lines
617 B
Nix

{ pkgs }:
{
empty = {
# NOTE: 2024-10-10 when marked as linux specific platform
plugins.magma-nvim.enable = pkgs.stdenv.isLinux;
};
defaults = {
plugins.magma-nvim = {
# NOTE: 2024-10-10 when marked as linux specific platform
enable = pkgs.stdenv.isLinux;
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;
};
};
};
}