--Line numbers vim.opt.nu = true vim.opt.relativenumber = true --Formatting vim.opt.tabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true vim.opt.smartindent = true --Search vim.opt.hlsearch = false vim.opt.incsearch = true --Scroll settings vim.opt.scrolloff = 8 --Always 8 lines above --Color scheme vim.cmd.colorscheme("habamax")