14 lines
342 B
Lua
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,
|
|
},
|
|
}
|