local map = vim.keymap.set -- Open/close tree browser map('n', '', 'NvimTreeToggle') -- Telescope map('n', '', 'Telescope find_files find_command=fd,-Ht,f') map('n', '', 'Telescope live_grep') -- Completion -- Navigate completions with tab and shift tab map('i', '', 'pumvisible() ? "\\" : "\\"', {expr = true}) map('i', '', 'pumvisible() ? "\\" : "\\"', {expr = true}) -- Navigate between buffers map('n', '', ':bn', {silent = true}) map('n', '', ':bp', {silent = true}) -- Navigate between splits map('n', '', '') map('n', '', '') map('n', '', '') map('n', '', '') -- Run Neoformat map('n', '', 'Neoformat')