nixos-config/dotfiles/nvim/lua/options.lua

13 lines
224 B
Lua
Raw Normal View History

require "nvchad.options"
-- add yours here!
local o = vim.o
2025-02-08 15:50:16 +03:00
o.cursorlineopt = "both" -- to enable cursorline
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