1
0
Fork 0
dotfiles/dot_config/nvim/lua/plugins/nvim-numb.lua

10 lines
No EOL
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
}