Compare commits

..

No commits in common. "58170c7ae38e5d8461c2e55ad07d95f0af161685" and "d132bd3e9f58ac2d6bdd226a657fc52a257744cc" have entirely different histories.

3 changed files with 110 additions and 107 deletions

View File

@ -5,6 +5,7 @@
---@module 'lazy'
---@type LazySpec
return {
{
'lewis6991/gitsigns.nvim',
---@module 'gitsigns'
---@type Gitsigns.Config
@ -55,4 +56,5 @@ return {
map('n', '<leader>tD', gitsigns.preview_hunk_inline, { desc = '[T]oggle git show [D]eleted' })
end,
},
},
}

View File

@ -1,8 +1,7 @@
-- Add indentation guides even on blank lines
---@module 'lazy'
---@type LazySpec
return {
{ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
@ -10,4 +9,5 @@ return {
---@module 'ibl'
---@type ibl.config
opts = {},
},
}

View File

@ -1,8 +1,8 @@
-- Linting
---@module 'lazy'
---@type LazySpec
return {
{ -- Linting
'mfussenegger/nvim-lint',
event = { 'BufReadPre', 'BufNewFile' },
config = function()
@ -56,4 +56,5 @@ return {
end,
})
end,
},
}