dotfiles/.chezmoitemplates/nvim/lua/plugins/telescope.lua

25 lines
520 B
Lua

-- Telescope konfigurieren
require('telescope').setup{
defaults = {
mappings = {
i = {
-- Mit j und k die Suche navigieren
["<c-h>"] = "which_key",
["<c-j>"] = "move_selection_next",
["<c-k>"] = "move_selection_previous"
}
}
},
pickers = {
},
extensions = {
-- Weitere Addons für Telescope im README finden
}
}
-- Telescope installieren
return {
'nvim-telescope/telescope.nvim', tag = '0.1.8',
dependencies = { 'nvim-lua/plenary.nvim' }
}