From af1ce0175c8b9b5da9b467b8bc4b88d4574303b8 Mon Sep 17 00:00:00 2001 From: greenmushrooms Date: Sun, 23 Feb 2025 22:58:49 -0500 Subject: [PATCH] changing to relative line number --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 5cac3d14..5368e8f4 100644 --- a/init.lua +++ b/init.lua @@ -93,7 +93,7 @@ vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal vim.g.have_nerd_font = false --- [[ Setting options ]] +-- [[ Setting options ]]j -- See `:help vim.opt` -- NOTE: You can change these options as you wish! -- For more options, you can see `:help option-list` @@ -102,7 +102,7 @@ vim.g.have_nerd_font = false vim.opt.number = true -- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! --- vim.opt.relativenumber = true +vim.opt.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.opt.mouse = 'a'