plugins/magma-nvim: switch to settings option

This commit is contained in:
Gaetan Lepage 2024-03-02 19:11:05 +01:00 committed by Gaétan Lepage
parent 4d8285ac0c
commit 51765fedbe
2 changed files with 68 additions and 87 deletions

View file

@ -7,13 +7,15 @@
plugins.magma-nvim = {
enable = true;
imageProvider = "none";
automaticallyOpenOutput = true;
wrapOutput = true;
outputWindowBorders = true;
cellHighlightGroup = "CursorLine";
savePath = null;
showMimetypeDebug = 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;
};
};
};
}