local o = vim.o local opt = vim.opt o.smarttab = true o.exrc = true o.clipboard = "unnamedplus" o.termguicolors = true o.list = true o.autochdir = true o.wrap = false o.number = true o.relativenumber = true o.expandtab = true o.tabstop = 4 o.smartindent = true o.shiftwidth = 4 o.sidescroll = 5 o.timeout= false o.scrolloff = 4 o.sidescrolloff = 4 o.sidescroll = 1 o.cursorline = true o.mouse = "" o.fillchars = 'eob: ' vim.g.mapleader = " " vim.g.maplocalleader = vim.g.mapleader opt.listchars = { space = "⋅", tab = "--", precedes = "…", extends = "…" }