refactor(nvim): remove telescope smart open
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 37s

This commit is contained in:
Price Hiller 2025-01-13 16:43:47 -06:00
parent d13cfb633d
commit 10c525238c
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 2 additions and 12 deletions

View File

@ -205,7 +205,7 @@ return {
val = {
button("e", " New File", ":ene <BAR> startinsert <CR>"),
button("f", "󰈞 Find File", ":Telescope find_files<CR>"),
button("r", "󱝏 Recent", ":Telescope smart_open<CR>"),
button("r", "󱝏 Recent", ":Telescope oldfiles<CR>"),
button("s", " Settings", "<cmd>e ~/.config/nvim/<CR>"),
button("u", " Update Plugins", ":Lazy sync<CR>"),
button("q", " Quit", ":qa<CR>"),

View File

@ -39,7 +39,7 @@ return {
{ "<leader>j", ":Telescope buffers<CR>", desc = "Telescope: Buffers", silent = true },
{ "<leader>tb", ":Telescope buffers<CR>", desc = "Telescope: Buffers", silent = true },
{ "<leader>th", ":Telescope help_tags<CR>", desc = "Telescope: Help Tags", silent = true },
{ "<leader>to", ":Telescope smart_open<CR>", desc = "Telescope: Smart Open", silent = true },
{ "<leader>to", ":Telescope oldfiles<CR>", desc = "Telescope: Recent FIles", silent = true },
{
"<leader>tO",
":Telescope oldfiles only_cwd=true<CR>",
@ -108,13 +108,6 @@ return {
},
"debugloop/telescope-undo.nvim",
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
{
"danielfalk/smart-open.nvim",
dependences = {
"kkharji/sqlite.lua",
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
},
},
},
config = function()
local telescope = require("telescope")
@ -232,9 +225,6 @@ return {
auto_validate = true,
db_safe_mode = false,
},
smart_open = {
match_algorithm = "fzf",
},
},
})