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