vim.opt.clipboard = 'unnamedplus' -- use system clipboard vim.opt.mouse = 'a' -- allow the mouse to be used in Nvim -- Tab -> Space vim.opt.tabstop = 4 vim.opt.softtabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true -- UI Config vim.opt.number = true vim.opt.splitbelow = true vim.opt.splitright = true