diff --git a/lua/nvim_options.lua b/lua/nvim_options.lua index 9658a48..4fd0dc4 100644 --- a/lua/nvim_options.lua +++ b/lua/nvim_options.lua @@ -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