1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +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, ... }:
lib.nixvim.plugins.mkNeovimPlugin { lib.nixvim.plugins.mkNeovimPlugin {
name = "blame-nvim"; name = "blame";
moduleName = "blame"; package = "blame-nvim";
description = "fugitive.vim-style `git blame` visualizer for Neovim"; description = "fugitive.vim-style `git blame` visualizer for Neovim";
maintainers = [ lib.maintainers.axka ]; maintainers = [ lib.maintainers.axka ];

View file

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