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:
parent
c074710027
commit
57006a3ace
2 changed files with 5 additions and 5 deletions
|
|
@ -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 ];
|
||||
|
|
@ -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";
|
||||
Loading…
Add table
Add a link
Reference in a new issue