summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/_telescope
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
commit0111b31cb0008f4fcc55ddc373e63f124652b156 (patch)
tree075490fb19c4838fc58129da9f902a3370f6029e /.config/nvim/lua/_telescope
parent6fcc69113bd7cc7295ef9dc068da80d043cbb8bb (diff)
Updated config based on Chris LunarVim release
Diffstat (limited to '.config/nvim/lua/_telescope')
-rw-r--r--.config/nvim/lua/_telescope/init.lua69
1 files changed, 0 insertions, 69 deletions
diff --git a/.config/nvim/lua/_telescope/init.lua b/.config/nvim/lua/_telescope/init.lua
deleted file mode 100644
index 497f74d..0000000
--- a/.config/nvim/lua/_telescope/init.lua
+++ /dev/null
@@ -1,69 +0,0 @@
-local actions = require('telescope.actions')
-local trouble = require("trouble.providers.telescope")
--- Global remapping
-------------------------------
--- '--color=never',
-require('telescope').setup {
- defaults = {
- vimgrep_arguments = {'rg', '--no-heading', '--with-filename', '--line-number', '--column', '--smart-case'},
- prompt_position = "top",
- prompt_prefix = " ",
- selection_caret = " ",
- entry_prefix = " ",
- initial_mode = "insert",
- selection_strategy = "reset",
- sorting_strategy = "ascending",
- 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,
- mappings = {
- i = {
- ["<C-c>"] = actions.close,
- ["<C-j>"] = actions.move_selection_next,
- ["<C-k>"] = actions.move_selection_previous,
- ["<c-t>"] = trouble.open_with_trouble,
- ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist,
- -- To disable a keymap, put [map] = false
- -- So, to not map "<C-n>", just put
- -- ["<c-x>"] = false,
- -- ["<esc>"] = actions.close,
-
- -- 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,
- ["<c-t>"] = trouble.open_with_trouble,
- ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist
- -- ["<C-i>"] = my_cool_custom_action,
- }
- }
- },
- extensions = {fzy_native = {override_generic_sorter = false, override_file_sorter = true}}
-}