From dea2c2176789784c8f9852472bb238d492bc4775 Mon Sep 17 00:00:00 2001 From: "Brian H. Ward" Date: Thu, 6 Mar 2025 09:13:05 -0500 Subject: [PATCH 1/2] nerdfont --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 5cac3d14601..33fb88ac1b4 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal -vim.g.have_nerd_font = false +vim.g.have_nerd_font = true -- [[ Setting options ]] -- See `:help vim.opt` From 5157ae4d8b6288c87a41c4fd26587fbff3b69772 Mon Sep 17 00:00:00 2001 From: "Brian H. Ward" Date: Thu, 6 Mar 2025 09:16:19 -0500 Subject: [PATCH 2/2] relative line numbers --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 33fb88ac1b4..c65784c3499 100644 --- a/init.lua +++ b/init.lua @@ -102,7 +102,7 @@ vim.g.have_nerd_font = true 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'