13 lines
208 B
Lua
13 lines
208 B
Lua
|
require "nvchad.options"
|
||
|
|
||
|
-- add yours here!
|
||
|
|
||
|
local o = vim.o
|
||
|
o.cursorlineopt ='both' -- to enable cursorline
|
||
|
o.scrolloff = 9
|
||
|
o.wrap = true
|
||
|
o.clipboard = "unnamedplus"
|
||
|
o.list = false
|
||
|
o.relativenumber = true
|
||
|
|