vim.opt.expandtab = true vim.opt.tabstop = 2 vim.opt.softtabstop = 2 vim.opt.shiftwidth = 2 vim.opt.cursorline = true vim.opt.scrolloff = 10 vim.opt.smartindent = true vim.opt.autoindent = true vim.opt.number = true vim.opt.relativenumber = true vim.opt.wrap = false vim.opt.mouse = "a" vim.opt.hidden = true vim.opt.incsearch = true vim.opt.ignorecase = true vim.opt.smartcase = true vim.opt.clipboard = "unnamedplus" vim.opt.inccommand = "split" vim.opt.foldcolumn = "1" vim.opt.foldlevel = 99 vim.opt.foldlevelstart = 99 vim.opt.foldenable = true vim.opt.fillchars = { eob = " " } vim.opt.swapfile = false vim.opt.backup = false vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" vim.opt.undofile = true vim.opt.hlsearch = true vim.opt.incsearch = true vim.opt.termguicolors = true vim.opt.background = "dark" vim.g.mapleader = " " vim.api.nvim_set_keymap("n", "", "", { desc = "Leader" }) vim.g.codeium_enabled = false