✨ feat(nvim): new extra: blame.nvim
This commit is contained in:
parent
7c82d462f1
commit
1bee812f17
2 changed files with 12 additions and 0 deletions
1
.config/nvim/.github/README.md
vendored
1
.config/nvim/.github/README.md
vendored
|
@ -259,6 +259,7 @@
|
||||||
- [akinsho/git-conflict.nvim](https://dotfyle.com/plugins/akinsho/git-conflict.nvim)
|
- [akinsho/git-conflict.nvim](https://dotfyle.com/plugins/akinsho/git-conflict.nvim)
|
||||||
- [sindrets/diffview.nvim](https://dotfyle.com/plugins/sindrets/diffview.nvim)
|
- [sindrets/diffview.nvim](https://dotfyle.com/plugins/sindrets/diffview.nvim)
|
||||||
- [NeogitOrg/neogit](https://dotfyle.com/plugins/NeogitOrg/neogit)
|
- [NeogitOrg/neogit](https://dotfyle.com/plugins/NeogitOrg/neogit)
|
||||||
|
- [FabijanZulj/blame.nvim](https://dotfyle.com/plugins/FabijanZulj/blame.nvim)
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
11
.config/nvim/lua/plugins/extras/editor/git/blame.lua
Normal file
11
.config/nvim/lua/plugins/extras/editor/git/blame.lua
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
return {
|
||||||
|
"FabijanZulj/blame.nvim",
|
||||||
|
opts = {
|
||||||
|
mappings = {
|
||||||
|
commit_info = "K",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{ "<leader>gB", "<cmd>BlameToggle<cr>", desc = "Blame View" },
|
||||||
|
},
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue