2024-10-04 16:58:17 +03:00
|
|
|
require "nvchad.options"
|
|
|
|
|
|
|
|
-- add yours here!
|
|
|
|
|
|
|
|
local o = vim.o
|
2025-02-08 15:50:16 +03:00
|
|
|
o.cursorlineopt = "both" -- to enable cursorline
|
2024-10-04 16:58:17 +03:00
|
|
|
o.scrolloff = 9
|
|
|
|
o.wrap = true
|
|
|
|
o.clipboard = "unnamedplus"
|
|
|
|
o.list = false
|
|
|
|
o.relativenumber = true
|
2025-02-08 15:50:16 +03:00
|
|
|
o.cmdheight = 0
|