vim.g.mapleader = " " vim.g.maplocalleader = " " vim.opt.backspace = "2" vim.opt.laststatus = 2 vim.opt.autowrite = true vim.opt.cursorline = true vim.opt.autoread = true vim.opt.tabstop = 2 vim.opt.shiftwidth = 2 vim.opt.shiftround = true vim.opt.expandtab = true vim.opt.number = true vim.opt.relativenumber = true require("config.lazy") vim.keymap.set("n", "h", ":noh") -- terminal vim.keymap.set("t", "", [[]], { desc = "Exit terminal mode" }) vim.keymap.set("n", "t", ":tabnew", { desc = "Open tab" })