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") -- Spell Checking map("n", "st",":set spell!") end return M