feat(nvim): added git-blamer
This commit is contained in:
parent
d18f22c294
commit
272d92a681
@ -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
|
||||||
|
6
init.lua
6
init.lua
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user