dotfiles/.config/nvim/lua/plugins/illuminate.lua

10 lines
152 B
Lua
Raw Permalink Normal View History

2022-12-28 12:35:57 +01:00
local M = {
"RRethy/vim-illuminate",
event = "BufReadPost",
config = function()
require("illuminate").configure({ delay = 200 })
end,
}
return M