diff --git a/modules/programs/nvim/plugins/coding.nix b/modules/programs/nvim/plugins/coding.nix index 44c2839..293f467 100644 --- a/modules/programs/nvim/plugins/coding.nix +++ b/modules/programs/nvim/plugins/coding.nix @@ -317,5 +317,21 @@ with builtins; cmd = [ "ConformInfo" "Format" ]; conf = readFile ./lua/conform.lua; } + { + plugin = neogen; + keys = [ + { key = "cg"; cmd = "Neogen"; desc = "Test"; } + ]; + opts = { + languages = { + python = { + template = { + annotation_convention = "reST"; + }; + }; + }; + }; + cmd = [ "Neogen" ]; + } ]; }