local utils_func = require("utils.funcs") local map = utils_func.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!") -- Better split movement map("n", "", "l") map("n", "", "h") map("n", "", "k") map("n", "", "j") -- Better split closing map("n", "", "c") end return M