From aea8575fc10c01b51d71d7b32144096e1d67b03c Mon Sep 17 00:00:00 2001 From: Slayter Teal Date: Sun, 29 Sep 2024 08:28:54 -0500 Subject: [PATCH] configure relative line numbers to true --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index 83d64b93..c740c255 100644 --- a/init.lua +++ b/init.lua @@ -7,6 +7,9 @@ vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal vim.g.have_nerd_font = true +-- Set relative line #s +vim.wo.relativenumber = true + -- [[ Setting options ]] -- See `:help vim.opt` -- NOTE: You can change these options as you wish!