Use relativenumbers

This commit is contained in:
Aaron Gorodetzky
2025-11-14 11:46:35 -05:00
parent c5db990cc5
commit ee22acb978

View File

@@ -5,7 +5,7 @@ local cmd = vim.api.nvim_command -- Convenient
-- [[ Context ]]
opt.colorcolumn = '100' -- Color Column 100 for easy line-length checking
opt.number = true -- Enable line numbers
opt.relativenumber = false -- Line numbers relative to the current line
opt.relativenumber = true -- Line numbers relative to the current line
opt.scrolloff = 4 -- Allow scrolling up to 4 characters past the end
opt.signcolumn = 'yes' -- Extra gutter for diagnostic signs to show up