Skip to content

Commit

Permalink
gitsigns to highlight changes in texts
Browse files Browse the repository at this point in the history
  • Loading branch information
teddywaweru committed Aug 1, 2024
1 parent c847486 commit 740881b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions nvim/lua/plugins/programming.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ return {
"folke/trouble.nvim",
lazy = true,
event = "VeryLazy",
dependencies = { "nvim/tree/nvim-web-devicons" },
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
mode = "workspace_diagnostics"

Expand Down Expand Up @@ -163,11 +163,16 @@ return {
},
},
{
"/lewis6991/gitsigns.nvim",
"lewis6991/gitsigns.nvim",
event = "VeryLazy",
lazy = true,
config = function()
require("gitsigns").setup()
require("gitsigns").setup({
current_line_blame = true,
numhl = true,
-- linehl = true,
word_diff = true
})
end
},
{
Expand Down

0 comments on commit 740881b

Please sign in to comment.