local opt = vim.opt -- text options opt.tabstop = 2 opt.shiftwidth = 2 opt.expandtab = false opt.smartindent = true opt.wrap = true -- appearance opt.syntax = "on" opt.termguicolors = true