local opt = vim.opt opt.smarttab = true opt.exrc = true opt.clipboard = "unnamedplus" opt.termguicolors = true opt.list = true opt.autochdir = true opt.wrap = false opt.number = true opt.relativenumber = true opt.expandtab = true opt.tabstop = 4 opt.smartindent = true opt.shiftwidth = 4 opt.sidescroll = 5 opt.timeout = false opt.scrolloff = 4 opt.sidescrolloff = 4 opt.sidescroll = 1 opt.cursorline = true opt.mouse = "" opt.ignorecase = true opt.smartcase = true opt.foldtext = "" opt.foldlevel = 99 opt.foldcolumn = "auto:1" vim.g.mapleader = " " vim.g.maplocalleader = vim.g.mapleader opt.listchars = { space = "⋅", tab = "--", precedes = "…", extends = "…" } opt.fillchars = { -- foldopen = "-", -- foldclose = "+", fold = " ", foldsep = " ", diff = "╱", eob = " ", }