22 lines
439 B
Lua
22 lines
439 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,
|
|
filetypes_denylist = {
|
|
'dirbuf',
|
|
'dirvish',
|
|
'fugitive',
|
|
'aerial',
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
require("illuminate").configure(opts)
|
|
end,
|
|
},
|
|
}
|