add relative line numbers to neovim

This commit is contained in:
2024-10-16 16:44:19 +01:00
parent 430ac30786
commit a990589dbb

View File

@@ -4,6 +4,7 @@ vim.g.maplocalleader = "\\"
vim.schedule(function()
vim.opt.clipboard = 'unnamedplus'
end)
vim.opt.termguicolors = true
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
@@ -14,6 +15,7 @@ vim.opt.inccommand = 'split'
vim.opt.cursorline = true
vim.opt.scrolloff = 8
vim.opt.autoindent = true
vim.opt.relativenumber = true
vim.cmd("set path+=**")
-- Setup lazy.nvim