local opt = vim.opt local cmd = vim.cmd -- opt.expandtab = true opt.tabstop = 4 opt.shiftwidth = 4 opt.smartindent = true opt.mouse = "a" opt.number = true opt.relativenumber = true opt.ignorecase = true opt.smartcase = true opt.gdefault = true opt.termguicolors = true opt.wrap = false opt.whichwrap = "b,s,h,l,<,>,[,]" opt.clipboard = "unnamedplus" opt.undofile = true opt.showmode = false opt.scrolloff = 3 opt.sidescrolloff = 5 opt.cursorline = true opt.shell = "/usr/bin/fish" opt.confirm = true -- Highlight on yank vim.cmd([[au TextYankPost * silent! lua vim.highlight.on_yank {timeout=1200}]])