local utils = require('utils') -- Clear highlights (search + trailing whitespace) utils.map('n', '', 'noh') utils.map("n", "", "let _s=@/:%s/\\s\\+$//e:let @/=_s") -- Use tab and shift+tab to cycle buffers utils.map("n", "", "bn") utils.map("n", "", "bp") -- Turn spellchecker on utils.map("n", "s", "setlocal spell spelllang=en_us") -- Toggle line numbers and file tree utils.map("n", "", "set nonumber!") utils.map("n", "fe", "Oil")