diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2023-11-14 03:49:56 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2023-11-14 03:49:56 +0100 |
commit | 89ded0c4acabfaae8065b653c2115841bc814db4 (patch) | |
tree | 87be055aeede4c9fdcbe68452acf36f23852c690 /lua | |
parent | 2a7b54d41840a9a5515553968012036b8e91f701 (diff) | |
download | vim-89ded0c4acabfaae8065b653c2115841bc814db4.zip vim-89ded0c4acabfaae8065b653c2115841bc814db4.tar.gz |
switch back from relativenumber
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/user/options.lua b/lua/user/options.lua index d63c6c5..b94ca9c 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -26,7 +26,7 @@ local options = { tabstop = 2, -- insert 2 spaces for a tab cursorline = true, -- highlight the current line number = true, -- set numbered lines - relativenumber = true, -- set relative numbered lines + relativenumber = false, -- set relative numbered lines numberwidth = 4, -- set number column width to 2 {default 4} signcolumn = "yes", -- always show the sign column, otherwise it would shift the text each time wrap = false, -- display lines as one long line |