feat(nvim): added git-blamer

This commit is contained in:
Marvin Drescher 2024-01-16 15:21:36 +01:00
parent d18f22c294
commit 272d92a681
2 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,7 @@ in
extraPackages = with pkgs; [ fzf xclip fish ]; extraPackages = with pkgs; [ fzf xclip fish ];
plugins = with pkgs.vimPlugins; [ plugins = with pkgs.vimPlugins; [
vim-fugitive vim-fugitive
git-blame-nvim
neogit neogit
diffview-nvim diffview-nvim
vim-airline vim-airline

View File

@ -126,6 +126,12 @@ neogit.setup({
}, },
}, },
}) })
require('gitblame').setup {
-- Note how the `gitblame_` prefix is omitted in `setup`
enabled = true,
delay = 1000,
highlight_group = "NeogitGraphGray"
}
local dap, dapui = require("dap"), require("dapui") local dap, dapui = require("dap"), require("dapui")
dap.adapters.lldb = { dap.adapters.lldb = {
type = "executable", type = "executable",