add nerd font, turn on relative line number

This commit is contained in:
Luca Sciarra 2024-06-24 22:20:28 -04:00
parent 5aeddfdd5d
commit b69eb1bba1
1 changed files with 5 additions and 1 deletions

View File

@ -84,6 +84,10 @@ I hope you enjoy your Neovim journey,
P.S. You can delete this when you're done too. It's your config now! :)
--]]
-- NOTE Adding a
vim.wo.relativenumber = true
-- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
@ -91,7 +95,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`