require "nvchad.options" -- add yours here! local opt = vim.opt -- Tab settings opt.expandtab = true -- Use spaces instead of tabs opt.shiftwidth = 4 -- Number of spaces for each indentation level opt.tabstop = 4 -- Number of spaces a tab counts for opt.softtabstop = 4 -- Number of spaces a tab feels like when editing -- Other options opt.conceallevel = 1 -- Conceal level for markdown, etc. opt.hidden = true -- Allow hidden buffers