Compare commits

..

2 Commits

Author SHA1 Message Date
Ori Perry
58170c7ae3 Fix stylua 2026-03-10 22:12:41 +02:00
Ori Perry
431cf2e881 Fix formating of plugins 2026-03-10 19:00:43 +02:00
3 changed files with 107 additions and 110 deletions

View File

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

View File

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

View File

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