diff options
author | Chris <[email protected]> | 2021-03-08 03:08:33 -0500 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-08 03:08:33 -0500 |
commit | 368f4042502071d087d49a8ad52059b0cc7cd16b (patch) | |
tree | 16f3c510c15ba3c69bfb5529d2631a48d9c1e4e8 /lua/config-telescope.lua | |
parent | c110240e3b95f3f157dd521eb87663cc5cbf2742 (diff) |
full telescope integration, make sure to udpate neovim or selection won't work
Diffstat (limited to 'lua/config-telescope.lua')
-rw-r--r-- | lua/config-telescope.lua | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/lua/config-telescope.lua b/lua/config-telescope.lua new file mode 100644 index 00000000..c1f8adfd --- /dev/null +++ b/lua/config-telescope.lua @@ -0,0 +1,81 @@ +local actions = require('telescope.actions') +-- Global remapping +------------------------------ +require('telescope').setup{ + defaults = { + mappings = { + i = { + ["<C-j>"] = actions.move_selection_next, + ["<C-k>"] = actions.move_selection_previous, + -- To disable a keymap, put [map] = false + -- So, to not map "<C-n>", just put + -- ["<c-x>"] = false, + + -- Otherwise, just set the mapping to the function that you want it to be. + -- ["<C-i>"] = actions.select_horizontal, + + -- Add up multiple actions + ["<CR>"] = actions.select_default + actions.center, + + -- You can perform as many actions in a row as you like + -- ["<CR>"] = actions.select_default + actions.center + my_cool_custom_action, + }, + n = { + ["<C-j>"] = actions.move_selection_next, + ["<C-k>"] = actions.move_selection_previous, + -- ["<esc>"] = actions.close, + -- ["<C-i>"] = my_cool_custom_action, + }, + }, + } +} + + -- '--color=never', +require('telescope').setup{ + defaults = { + vimgrep_arguments = { + 'rg', + '--no-heading', + '--with-filename', + '--line-number', + '--column', + '--smart-case' + }, + prompt_position = "bottom", + prompt_prefix = " ", + selection_caret = " ", + entry_prefix = " ", + initial_mode = "insert", + selection_strategy = "reset", + sorting_strategy = "descending", + layout_strategy = "horizontal", + layout_defaults = { + horizontal = { + mirror = false, + }, + vertical = { + mirror = false, + }, + }, + file_sorter = require'telescope.sorters'.get_fuzzy_file, + file_ignore_patterns = {}, + generic_sorter = require'telescope.sorters'.get_generic_fuzzy_sorter, + shorten_path = true, + winblend = 0, + width = 0.75, + preview_cutoff = 120, + results_height = 1, + results_width = 0.8, + border = {}, + borderchars = { '─', '│', '─', '│', '╭', '╮', '╯', '╰' }, + color_devicons = true, + use_less = true, + set_env = { ['COLORTERM'] = 'truecolor' }, -- default = nil, + file_previewer = require'telescope.previewers'.vim_buffer_cat.new, + grep_previewer = require'telescope.previewers'.vim_buffer_vimgrep.new, + qflist_previewer = require'telescope.previewers'.vim_buffer_qflist.new, + + -- Developer configurations: Not meant for general override + buffer_previewer_maker = require'telescope.previewers'.buffer_previewer_maker + } +} |