aboutsummaryrefslogtreecommitdiff
path: root/nvim/.config/nvim/lua/bundles/telescope.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config/nvim/lua/bundles/telescope.lua')
-rwxr-xr-xnvim/.config/nvim/lua/bundles/telescope.lua56
1 files changed, 0 insertions, 56 deletions
diff --git a/nvim/.config/nvim/lua/bundles/telescope.lua b/nvim/.config/nvim/lua/bundles/telescope.lua
index a272fce..b29c18d 100755
--- a/nvim/.config/nvim/lua/bundles/telescope.lua
+++ b/nvim/.config/nvim/lua/bundles/telescope.lua
@@ -10,62 +10,6 @@ require("telescope").setup {
},
}
--- require("telescope").setup {
--- extensions = {
--- fzf = {},
--- wrap_results = true,
--- history = {
--- path = vim.fs.joinpath(data, "telescope_history.sqlite3"),
--- limit = 100,
--- },
--- ["ui-select"] = {
--- require("telescope.themes").get_dropdown(),
--- },
--- },
--- defaults = {
--- -- configure to use ripgrep
--- vimgrep_arguments = {
--- "rg",
--- "--follow", -- Follow symbolic links
--- "--hidden", -- for hidden files
--- "--no-heading", -- Don't group matches by each file
--- "--with-filename", -- Print the file path with the matched lines
--- "--line-number", -- Show line numbers
--- "--column", -- Show column numbers
--- "--smart-case", -- Smart case search
---
--- -- Exclude some patterns from search
--- "--glob=!**/.git/*",
--- "--glob=!**/.idea/*",
--- "--glob=!**/.vscode/*",
--- "--glob=!**/build/*",
--- "--glob=!**/dist/*",
--- "--glob=!**/yarn.lock",
--- "--glob=!**/package-lock.json",
--- },
--- },
--- pickers = {
--- find_files = {
--- hidden = true,
--- -- needed to exclude some files & dirs from general search
--- -- when not included or specified in .gitignore
--- find_command = {
--- "rg",
--- "--files",
--- "--hidden",
--- "--glob=!**/.git/*",
--- "--glob=!**/.idea/*",
--- "--glob=!**/.vscode/*",
--- "--glob=!**/build/*",
--- "--glob=!**/dist/*",
--- "--glob=!**/yarn.lock",
--- "--glob=!**/package-lock.json",
--- },
--- },
--- },
--- }
---
-
pcall(require("telescope").load_extension, "fzf")
pcall(require("telescope").load_extension, "smart_history")
pcall(require("telescope").load_extension, "rest")