summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/extra/numb.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-08-10 23:15:04 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-08-10 23:15:04 +0200
commit540268d618627079c9b958a955b586e1888b46a8 (patch)
tree1a22a5feb457135178b9d4fe8b6c1755f5ca66bc /.config/nvim/lua/extra/numb.lua
parente79bd3273f58ba38e8fcd716090b89326791afbb (diff)
Major refactor of nvim
Diffstat (limited to '.config/nvim/lua/extra/numb.lua')
-rw-r--r--.config/nvim/lua/extra/numb.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/nvim/lua/extra/numb.lua b/.config/nvim/lua/extra/numb.lua
new file mode 100644
index 0000000..17d9f6b
--- /dev/null
+++ b/.config/nvim/lua/extra/numb.lua
@@ -0,0 +1,17 @@
+local M = {}
+local Log = require "core.log"
+
+M.config = function()
+ local status_ok, numb = pcall(require, "numb")
+ if not status_ok then
+ Log:get_default().error "Failed to load numb"
+ return
+ end
+
+ numb.setup {
+ show_numbers = true, -- Enable 'number' for the window while peeking
+ show_cursorline = true, -- Enable 'cursorline' for the window while peeking
+ }
+end
+
+return M