local o = vim.opt -- Mappings vim.g.mapleader = " " vim.g.maplocalleader = "," -- general o.completeopt = { "menuone", "noselect" } o.clipboard = "unnamedplus" o.cmdheight = 1 o.timeoutlen = 250 o.fileencoding = "utf-8" o.hidden = true o.ignorecase = true o.mouse = "a" o.pumheight = 8 o.showmode = false o.smartcase = true o.smartindent = true o.splitbelow = true o.splitright = true o.swapfile = false o.termguicolors = true o.title = true o.undofile = true o.updatetime = 1500 o.writebackup = false o.expandtab = true o.shiftwidth = 4 o.tabstop = 4 o.cursorline = true o.number = true o.numberwidth = 4 o.signcolumn = "yes" o.wrap = false o.scrolloff = 8 o.sidescrolloff = 8