refactor(nvim): remove telescope smart open
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 37s
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 37s
This commit is contained in:
parent
d13cfb633d
commit
10c525238c
@ -205,7 +205,7 @@ return {
|
|||||||
val = {
|
val = {
|
||||||
button("e", " New File", ":ene <BAR> startinsert <CR>"),
|
button("e", " New File", ":ene <BAR> startinsert <CR>"),
|
||||||
button("f", " Find File", ":Telescope find_files<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("s", " Settings", "<cmd>e ~/.config/nvim/<CR>"),
|
||||||
button("u", " Update Plugins", ":Lazy sync<CR>"),
|
button("u", " Update Plugins", ":Lazy sync<CR>"),
|
||||||
button("q", " Quit", ":qa<CR>"),
|
button("q", " Quit", ":qa<CR>"),
|
||||||
|
@ -39,7 +39,7 @@ return {
|
|||||||
{ "<leader>j", ":Telescope buffers<CR>", desc = "Telescope: Buffers", silent = true },
|
{ "<leader>j", ":Telescope buffers<CR>", desc = "Telescope: Buffers", silent = true },
|
||||||
{ "<leader>tb", ":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>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",
|
"<leader>tO",
|
||||||
":Telescope oldfiles only_cwd=true<CR>",
|
":Telescope oldfiles only_cwd=true<CR>",
|
||||||
@ -108,13 +108,6 @@ return {
|
|||||||
},
|
},
|
||||||
"debugloop/telescope-undo.nvim",
|
"debugloop/telescope-undo.nvim",
|
||||||
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
|
{ "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()
|
config = function()
|
||||||
local telescope = require("telescope")
|
local telescope = require("telescope")
|
||||||
@ -232,9 +225,6 @@ return {
|
|||||||
auto_validate = true,
|
auto_validate = true,
|
||||||
db_safe_mode = false,
|
db_safe_mode = false,
|
||||||
},
|
},
|
||||||
smart_open = {
|
|
||||||
match_algorithm = "fzf",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user