plugins/quarto: init

Use neovim-plugin.mkNeovimPlugin and move quarto-nvim to quarto

Rename tests to match convention

Passing tests locally, add required dependencies

Utilize `let` - `in` block

Remove extraPlugins

plugins/quarto: init

plugin/quarto: init

plugins/quarto: init

plugins/quarto: init
This commit is contained in:
bpatel347 2024-11-08 16:56:53 -05:00 committed by nix-infra-bot
parent 9d99d7cfdb
commit 5bc3fa6996
2 changed files with 176 additions and 0 deletions

View file

@ -0,0 +1,75 @@
{
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" ];
};
};
};
};
}