feat(nvim): add neogen

stylix
Moritz Böhme 2023-11-30 14:45:42 +01:00
parent fd159af54c
commit e10bfd9390
1 changed files with 16 additions and 0 deletions

View File

@ -317,5 +317,21 @@ with builtins;
cmd = [ "ConformInfo" "Format" ];
conf = readFile ./lua/conform.lua;
}
{
plugin = neogen;
keys = [
{ key = "<leader>cg"; cmd = "<cmd>Neogen<cr>"; desc = "Test"; }
];
opts = {
languages = {
python = {
template = {
annotation_convention = "reST";
};
};
};
};
cmd = [ "Neogen" ];
}
];
}