10 lines
233 B
Lua
10 lines
233 B
Lua
|
local function init()
|
||
|
require('numb').setup {
|
||
|
show_numbers = true, -- Enable 'number' for the window while peeking
|
||
|
show_cursorline = true -- Enable 'cursorline' for the window while peeking
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return {
|
||
|
init = init
|
||
|
}
|