Skip to content

Commit

Permalink
fix(git-blame.nvim): migrate 'init.lua' to 'config.lua' to enable the…
Browse files Browse the repository at this point in the history
… options (#296)

* fix(git-blame.nvim): migrate from init to config

* fix(git-blame.nvim): migrate from 'init.lua' to 'config.lua'
  • Loading branch information
linrongbin16 authored Oct 19, 2023
1 parent 7be160d commit 4f101fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
6 changes: 6 additions & 0 deletions lua/configs/f-person/git-blame-nvim/config.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require("gitblame").setup({
enabled = false,
delay = 300,
message_template = " <author> • <date> • <summary>",
message_when_not_committed = " <author> • <date> • Not Committed Yet",
})
8 changes: 0 additions & 8 deletions lua/configs/f-person/git-blame-nvim/init.lua

This file was deleted.

2 changes: 1 addition & 1 deletion lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ local M = {
{
"f-person/git-blame.nvim",
event = { VeryLazy, CmdlineEnter },
init = lua_init("f-person/git-blame.nvim"),
config = lua_config("f-person/git-blame.nvim"),
keys = lua_keys("f-person/git-blame.nvim"),
},
-- Permlink
Expand Down

0 comments on commit 4f101fb

Please sign in to comment.