-- Basic Settings vim.opt.number = true vim.opt.relativenumber = true vim.opt.mouse = 'a' vim.opt.ignorecase = true vim.opt.smartcase = true vim.opt.hlsearch = false vim.opt.wrap = false vim.opt.tabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true vim.opt.termguicolors = true vim.opt.cursorline = true vim.opt.signcolumn = 'yes' vim.opt.clipboard = "unnamedplus" -- Leader key vim.g.mapleader = ' '