From 64ae7ed11fcc389e9d1caf45b9a010322600ee15 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Wed, 6 Sep 2023 10:18:06 -0700 Subject: [PATCH] [nvim] Set relativenumber --- config/nvim/lua/configuration.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/config/nvim/lua/configuration.lua b/config/nvim/lua/configuration.lua index 31f7666..3d7abcd 100644 --- a/config/nvim/lua/configuration.lua +++ b/config/nvim/lua/configuration.lua @@ -16,6 +16,7 @@ opt.splitbelow = true -- Show line numbers opt.number = true +opt.relativenumber = true -- Customize the status bar a bit. Show the ruler, mode, and the command as the -- last line of the screen.