From ed6114dc05abf4da2bdde4c8f13f98eb047c18ab Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Thu, 7 Nov 2024 19:49:08 +0700 Subject: [PATCH] telescope: disabled smart open --- lua/plugins/telescope.lua | 56 +++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index cf84941..b47effc 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -1,30 +1,30 @@ return { - { - "danielfalk/smart-open.nvim", - keys = { - { - "", - function() - require("telescope").extensions.smart_open.smart_open { cwd_only = true } - end, - desc = "Open file or buffers", - }, - }, - }, - { - "telescope.nvim", - opts = { - extensions = { - smart_open = { - result_limit = 50, - }, - }, - }, - keys = { - { - "", - false, - }, - }, - }, + -- { + -- "danielfalk/smart-open.nvim", + -- keys = { + -- { + -- "", + -- function() + -- require("telescope").extensions.smart_open.smart_open { cwd_only = true } + -- end, + -- desc = "Open file or buffers", + -- }, + -- }, + -- }, + -- { + -- "telescope.nvim", + -- opts = { + -- extensions = { + -- smart_open = { + -- result_limit = 50, + -- }, + -- }, + -- }, + -- keys = { + -- { + -- "", + -- false, + -- }, + -- }, + -- }, }