local o = vim.o local opt = vim.opt local wo = vim.wo local bo = vim.bo -- Global options -- o.smarttab = true o.clipboard = "unnamedplus" o.termguicolors = 24 o.list = true opt.listchars = { space = "⋅", tab = " " } o.autochdir = true -- Window options -- wo.number = true wo.relativenumber = true -- Buffer options -- bo.expandtab = true bo.tabstop = 4 bo.smartindent = true --bo.softtabstop = 0 bo.shiftwidth = 2