local o = vim.o -- o.expandtab = true o.tabstop = 4 o.shiftwidth = 4 o.smartindent = true o.number = true o.ignorecase = true o.smartcase = true o.gdefault = true o.termguicolors = true o.wrap = false o.whichwrap = "b,s,h,l,<,>,[,]" o.clipboard = "unnamedplus" o.undofile = true o.showmode = false o.scrolloff = 3 o.sidescrolloff = 5 o.cursorline = true o.shell = "/usr/bin/fish" o.confirm = true o.linebreak = true o.laststatus = 3 o.pumblend = 10 o.guifont = "JetBrainsMono Nerd Font Mono" o.shortmess = o.shortmess .. "S" -- Disable diagnostics vim.diagnostic.disable()