19 lines
340 B
Lua
19 lines
340 B
Lua
return {
|
|
-- Tools
|
|
{ "machakann/vim-swap" },
|
|
|
|
-- Background Tools
|
|
{ "editorconfig/editorconfig-vim" },
|
|
|
|
-- Eye-Candy
|
|
{ "dracula/vim" },
|
|
{
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
config = function()
|
|
require("indent_blankline").setup({
|
|
show_current_context = true,
|
|
show_current_context_start = true,
|
|
})
|
|
end,
|
|
},
|
|
}
|