-- Line numbers vim.wo.nu = true vim.wo.relativenumber = true -- Mouse enable vim.opt.mouse = "a" vim.opt.mousefocus = true -- Clipboard vim.opt.clipboard ="unnamedplus" -- Indent Settings vim.opt.shiftwidth = 4 vim.opt.tabstop = 4 vim.opt.softtabstop = 4 -- Other vim.opt.scrolloff = 8 vim.opt.wrap = false vim.opt.termguicolors = true