-- ~/.config/nvim/lua/core/options.lua vim.opt.number = true vim.opt.relativenumber = true vim.opt.signcolumn = "yes" vim.opt.termguicolors = true vim.opt.cursorline = true vim.opt.ignorecase = true vim.opt.smartcase = true vim.opt.incsearch = true vim.opt.hlsearch = false vim.opt.splitright = true vim.opt.splitbelow = true vim.opt.updatetime = 200 vim.opt.timeoutlen = 400 vim.opt.tabstop=4 vim.opt.softtabstop=4 vim.opt.autoindent=true vim.opt.smartindent=true vim.opt.expandtab = true -- Insert spaces when pressing Tab vim.opt.shiftwidth = 4 -- Indent width used by >> and <<