nix-community.nixvim/tests/test-sources/plugins/by-name/quarto/default.nix

76 lines
1.4 KiB
Nix
Raw Normal View History

{
empty = {
plugins.quarto.enable = true;
};
defaults = {
plugins.quarto = {
enable = true;
settings = {
debug = false;
closePreviewOnExit = true;
lspFeatures = {
enabled = true;
chunks = "curly";
languages = [
"r"
"python"
"julia"
"bash"
"html"
];
diagnostics = {
enabled = true;
triggers = [ "BufWritePost" ];
};
completion = {
enabled = true;
};
};
codeRunner = {
enabled = false;
default_method = null;
ft_runners = { };
never_run = [ "yaml" ];
};
};
};
};
example = {
plugins.quarto = {
enable = true;
settings = {
debug = true;
closePreviewOnExit = false;
lspFeatures = {
enabled = true;
chunks = "curly";
languages = [
"r"
"python"
"julia"
];
diagnostics = {
enabled = true;
triggers = [ "BufWritePost" ];
};
completion = {
enabled = true;
};
};
codeRunner = {
enabled = true;
default_method = "molten";
ft_runners = {
python = "molten";
};
never_run = [ "yaml" ];
};
};
};
};
}