1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/blame-nvim: rename to blame

This commit is contained in:
Gaetan Lepage 2025-10-08 11:59:33 +02:00 committed by Gaétan Lepage
parent c074710027
commit 57006a3ace
2 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "blame-nvim";
moduleName = "blame";
name = "blame";
package = "blame-nvim";
description = "fugitive.vim-style `git blame` visualizer for Neovim";
maintainers = [ lib.maintainers.axka ];

View file

@ -1,10 +1,10 @@
{
empty = {
plugins.blame-nvim.enable = true;
plugins.blame.enable = true;
};
defaults = {
plugins.blame-nvim = {
plugins.blame = {
enable = true;
settings = {
date_format = "%d.%m.%Y";
@ -37,7 +37,7 @@
};
example = {
plugins.blame-nvim = {
plugins.blame = {
enable = true;
settings = {
date_format = "%Y-%m-%d";