diff options
author | Adam Stück <adam@adast.dk> | 2024-08-07 12:32:51 +0200 |
---|---|---|
committer | Adam Stück <adam@adast.dk> | 2024-08-07 12:32:51 +0200 |
commit | 0d3f6134b5d35ac39deb631a8a3433b89998c14d (patch) | |
tree | 4231edffa2e22bf3b2f55b16c60c248f3aebc4bb | |
parent | dad67bc9eee581c447759bd7e74253bdeb9ad341 (diff) |
options: relative line numbersmain
-rw-r--r-- | lua/options.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/options.lua b/lua/options.lua index 94ee2ed..bb843ad 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -7,7 +7,7 @@ vim.opt.number = true -- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! --- vim.opt.relativenumber = true +vim.opt.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.opt.mouse = 'a' |