config/.config/nvim/lua/user/numb.lua

9 lines
244 B
Lua

local status_ok, numb = pcall(require, "numb")
if not status_ok then
return
end
numb.setup({
show_numbers = true, -- Enable 'number' for the window while peeking
show_cursorline = true, -- Enable 'cursorline' for the window while peeking
})