Skip to content

Commit dd1b00b

Browse files
committed
Enable relative numbers
1 parent d350db2 commit dd1b00b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

init.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
102102
vim.opt.number = true
103103
-- You can also add relative line numbers, to help with jumping.
104104
-- Experiment for yourself to see if you like it!
105-
-- vim.opt.relativenumber = true
105+
vim.opt.relativenumber = true
106106

107107
-- Enable mouse mode, can be useful for resizing splits for example!
108108
vim.opt.mouse = 'a'
@@ -114,9 +114,9 @@ vim.opt.showmode = false
114114
-- Schedule the setting after `UiEnter` because it can increase startup-time.
115115
-- Remove this option if you want your OS clipboard to remain independent.
116116
-- See `:help 'clipboard'`
117-
vim.schedule(function()
118-
vim.opt.clipboard = 'unnamedplus'
119-
end)
117+
-- vim.schedule(function()
118+
-- vim.opt.clipboard = 'unnamedplus'
119+
-- end)
120120

121121
-- Enable break indent
122122
vim.opt.breakindent = true

0 commit comments

Comments
 (0)