1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/options.lua: change numberwidth

This commit is contained in:
Henrik Hautakoski 2025-03-23 16:36:58 +01:00
parent 97557fe8ef
commit 09b7206983

View file

@ -52,7 +52,7 @@ vim.o.smartindent = true
-- line numbers
vim.o.number = true
vim.o.relativenumber = true
vim.o.numberwidth = 5
vim.o.numberwidth = 1
-- Gutter format
vim.o.statuscolumn = '%s %=%{v:relnum?v:relnum:v:lnum} %C│ '