nvchad/lua/configs/telescope.lua
Paul Trowbridge 9b578f964b refactor config to follow nvchad conventions
- Create separate config files for telescope and nvim-tree in lua/configs/
- Fix plugin syntax (requires -> dependencies for lazy.nvim)
- Consolidate duplicate settings into appropriate files
- Move plugin configs out of options.lua and mappings.lua
- Clean up init.lua to only contain SQL autocmds

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-17 23:54:05 -05:00

16 lines
303 B
Lua

local actions = require('telescope.actions')
require('telescope').setup {
defaults = {
layout_config = {
prompt_position = "top"
},
mappings = {
i = {
["<C-j>"] = actions.move_selection_next,
["<C-k>"] = actions.move_selection_previous,
},
},
},
}