-- options local o = vim.opt o.expandtab = true o.signcolumn = "yes" o.nu = true o.relativenumber = true o.tabstop = 4 o.softtabstop = 4 o.shiftwidth = 2 o.expandtab = true o.smartindent = true o.wrap = false o.swapfile = false o.backup = false o.undofile = true o.undodir = vim.fn.stdpath("data") .. "/undodir" o.hlsearch = false o.incsearch = true o.clipboard = "unnamedplus" o.colorcolumn = "80" o.pumheight = 15 o.updatetime = 50 o.scrolloff = 8 -- remove bg vim.api.nvim_set_hl(0, "Normal", { bg = "none" })