dots/config/nvim/lua/aleidk/plugins/init.lua
2023-12-29 09:46:02 -03:00

28 lines
525 B
Lua

return {
-- Detect tabstop and shiftwidth automatically
"tpope/vim-sleuth",
{
-- Highlight word under cursor
"RRethy/vim-illuminate",
event = { "BufReadPost", "BufNewFile" },
opts = { delay = 200 },
config = function(_, opts)
require("illuminate").configure(opts)
end,
},
{ "nvim-treesitter/nvim-treesitter-context" },
{
"echasnovski/mini.surround",
version = "*",
event = "VeryLazy",
},
{
"uga-rosa/ccc.nvim",
event = "VeryLazy",
opts = {
auto_enable = true,
lsp = true,
},
},
}