-- Options are automatically loaded before lazy.nvim startup -- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua -- Add any additional options here vim.opt.numberwidth = 2 vim.opt.signcolumn = "yes" vim.opt.wrap = true vim.opt.scrolloff = 10 vim.opt.expandtab = true vim.opt.shiftwidth = 4 vim.opt.tabstop = 4 vim.opt.softtabstop = 4 vim.opt.smartindent = true vim.opt.breakindent = true vim.opt.clipboard = "unnamedplus" vim.opt.fileencoding = "utf-8" vim.opt.updatetime = 100 vim.opt.undofile = true vim.opt.cursorline = false vim.opt.ignorecase = true vim.opt.smartcase = true