Skip to content

Commit

Permalink
removed relative numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
nicvagn committed Mar 31, 2024
1 parent 634c97b commit 82b77de
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lua/core/options.lua
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
local set = vim.opt

set.number = true -- line number
set.relativenumber = true
set.mouse = "a" -- Enable mouse
set.tabstop = 4
set.shiftwidth = 4
set.scrolloff = 8 -- Keep minimum x number of screen lines above and below the cursor
set.clipboard = "unnamedplus"
set.swapfile = false
set.hlsearch = false -- Highlight search results
set.swapfile = true
set.hlsearch = true -- Highlight search results
set.incsearch = true -- As you type, match the currently typed word w/o pressing enter
set.cursorline = true
set.termguicolors = true
Expand Down

0 comments on commit 82b77de

Please sign in to comment.