local utils = require('utils') utils.map('n', '', 'noh') -- Clear highlights -- Use tab and shift+tab to cycle buffers utils.map("n", "", "bn") utils.map("n", "", "bp") -- Find files, buffers, grep in folder using Telescope command-line sugar. utils.map("n", "ff", "Telescope find_files") utils.map("n", "fg", "Telescope live_grep") utils.map("n", "fb", "Telescope buffers") utils.map("n", "fh", "Telescope help_tags") utils.map("n", "fl", "Telescope git_files") -- Turn spellchecker on utils.map("n", "s", "setlocal spell spelllang=en_us") utils.map("n", "", "let _s=@/:%s/\\s\\+$//e:let @/=_s") -- Toggles on different plugins/modes utils.map("n", "", "set nonumber!") utils.map("n", "", "NvimTreeToggle")