13 lines
196 B
Lua
13 lines
196 B
Lua
require "nvchad.options"
|
|
|
|
-- add yours here!
|
|
local o = vim.o
|
|
|
|
-- set tabsize
|
|
o.tabstop = 4
|
|
o.expandtab = true
|
|
o.shiftwidth = 4
|
|
|
|
-- local o = vim.o
|
|
o.cursorlineopt ='both' -- to enable cursorline!
|