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 -- Lualine
use {'nvim-lualine/lualine.nvim', use {'nvim-lualine/lualine.nvim',
after = 'github-nvim-theme', after = 'github-nvim-theme',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }, requires = { 'kyazdani42/nvim-web-devicons', opt = true },
config = function() config = function()
require('lualine').setup { require('lualine').setup {
options = { options = {
theme = 'auto' theme = 'auto'
}
} }
} end
end
} }
-- Git Blame Line
use {
'tveskag/nvim-blame-line',
requires = {'nvim-lua/plenary.nvim'},
}
-- Git Integration -- Git Integration
use { 'TimUntersberger/neogit', use { 'TimUntersberger/neogit',