-- Set custom maps local map = vim.keymap.set -- Horizontal split for terminal map('n', '', ':split | terminal', { desc = '[T]erminal (Horizontal Split)' }) -- Open neo-filetree map('n', '', ':Neotree toggle', { desc = '[E]xplorer (toggle neotree)' }) -- Open lazygit in overlay map('n', '', 'LazyGit', { desc = 'LazyGit' }) -- Telescope grep all files in working dir map('n', '', 'builtin.grep_string', { desc = '[F]ind (Telescope ripgrep all files in work_dir)' })