fix(nvim): remove vim-jjdescription #414

Merged
jalil merged 1 commit from push-xtzunzpzlmml into main 2025-04-15 13:06:49 +02:00
2 changed files with 4 additions and 4 deletions

View file

@ -72,13 +72,14 @@ in
templates.draft_commit_description = ''
concat(
description,
"\n",
surround(
"\nJJ: This commit contains the following changes:\n", "",
indent("JJ: ", diff.stat(72)),
indent("JJ: ", diff.summary()),
),
surround(
"\nJJ: Diff:\n", "",
indent("JJ: ", diff.git()),
"JJ: ignore-rest\n", "",
diff.git(),
),
)
'';

View file

@ -55,7 +55,6 @@ in
extraPlugins = [
plugins.nui-nvim
plugins.nvim-web-devicons
plugins.vim-jjdescription # FIXME: included since neovim nightly
];
extraPackages = [ pkgs.luajitPackages.jsregexp ];
extraConfigLuaPre =