10 lines
152 B
Lua
10 lines
152 B
Lua
|
local status_ok, spectre = pcall(require, "spectre")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
spectre.setup({
|
||
|
live_update = true,
|
||
|
is_insert_mode = true,
|
||
|
})
|