Added git blame line

This commit is contained in:
Bryan Ramos 2023-04-10 17:38:15 -04:00
parent 1d1751c8c6
commit 53d0a495fa

View file

@ -36,16 +36,21 @@ return packer.startup(function(use)
-- Lualine
use {'nvim-lualine/lualine.nvim',
after = 'github-nvim-theme',
requires = { 'kyazdani42/nvim-web-devicons', opt = true },
config = function()
require('lualine').setup {
options = {
theme = 'auto'
requires = { 'kyazdani42/nvim-web-devicons', opt = true },
config = function()
require('lualine').setup {
options = {
theme = 'auto'
}
}
}
end
end
}
-- Git Blame Line
use {
'tveskag/nvim-blame-line',
requires = {'nvim-lua/plenary.nvim'},
}
-- Git Integration
use { 'TimUntersberger/neogit',