local utils = require("utils.init") local map = utils.map local M = {} M.setup = function() -- set mapleader to space vim.g.mapleader = " " -- Get rid of highlight after search map("n", "", ":noh") end return M