mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 22:47:18 +01:00
20 lines
505 B
Lua
20 lines
505 B
Lua
return {
|
|
{ 'tpope/vim-abolish', lazy = false },
|
|
{ 'tpope/vim-unimpaired', lazy = false },
|
|
{
|
|
'folke/trouble.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {},
|
|
keys = {
|
|
{ '<leader>d', '<cmd>TroubleToggle<cr>', desc = 'diagnostic quickfix' },
|
|
},
|
|
},
|
|
{ -- Add indentation guides even on blank lines
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
-- See `:help ibl`
|
|
main = 'ibl',
|
|
opts = {},
|
|
},
|
|
}
|