dots/config/nvim/lua/aleidk/plugins-core/init.lua
aleidk 071be15dc1 re-structure neovim plugins
also delete unused ones
2024-11-20 15:11:55 -03:00

14 lines
342 B
Lua

return {
-- Detect tabstop and shiftwidth automatically
"tpope/vim-sleuth",
{ "nvim-tree/nvim-web-devicons", lazy = true },
{
-- Highlight word under cursor
"RRethy/vim-illuminate",
event = { "BufReadPost", "BufNewFile" },
opts = { delay = 200 },
config = function(_, opts)
require("illuminate").configure(opts)
end,
},
}