local g = vim.g g.mapleader = " " g.loaded_netrw = 1 g.loaded_netrwPlugin = 1 local opt = vim.opt opt.autoindent = true opt.autowrite = false opt.clipboard = "unnamedplus" opt.conceallevel = 0 opt.cursorline = true opt.cursorlineopt = "both" opt.expandtab = false opt.grepformat = "%f:%l:%c:%m" opt.grepprg = "rg --vimgrep" opt.ignorecase = false opt.laststatus = 0 opt.mouse = "a" opt.number = true opt.relativenumber = false opt.ruler = false opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize" } opt.shiftwidth = 4 opt.showmode = false opt.signcolumn = "yes" opt.smartindent = true opt.softtabstop = 4 opt.spell = false opt.splitbelow = true opt.splitright = true opt.tabstop = 4 opt.termguicolors = true opt.undofile = true opt.undolevels = 10000 opt.updatetime = 250 opt.wildmode = "longest:full,full" opt.wrap = false