refactor(nvim): remove telescope file browser

This commit is contained in:
Price Hiller 2023-12-19 04:53:32 -06:00
parent 657e8e2cbf
commit c6ceff3e50
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,6 @@ return {
{ "<leader>tn", ":Telescope neoclip default<CR>", desc = "Telescope: Neoclip Buffer" },
{ "<leader>tr", ":Telescope resume<CR>", desc = "Telescope: Resume" },
{ "<leader>tR", ":Telescope registers<CR>", desc = "Telescope: Registers" },
{ "<leader>tt", ":Telescope file_browser<CR>", desc = "Telescope: File Tree" },
{ "<leader>ts", ":Telescope spell_suggest<CR>", desc = "Telescope: Spell Suggest" },
{ "<leader>tl", ":Telescope resume<CR>", desc = "Telescope: Previous State" },
{ "<leader>tT", ":TodoTelescope<CR>", desc = "Telescope: Todo Items" },
@ -35,9 +34,9 @@ return {
{ "<leader>tm", ":Telescope man_pages<CR>", desc = "Telescope: Man Pages" },
{ "<leader>tq", ":Telescope quickfixhistry", desc = "LSP: Telescope Quickfix History" },
{ "<leader>nv", ":Telescope notify<CR>", desc = "Notifications: Search" },
{ "<leader>tt", ":Telescope<CR>", desc = "Telescope: Open Telescope" }
},
dependencies = {
"nvim-telescope/telescope-file-browser.nvim",
"artart222/telescope_find_directories",
"nvim-telescope/telescope-ui-select.nvim",
"debugloop/telescope-undo.nvim",
@ -147,7 +146,6 @@ return {
})
telescope.load_extension("find_directories")
telescope.load_extension("file_browser")
telescope.load_extension("notify")
telescope.load_extension("fzf")
telescope.load_extension("ui-select")

View File

@ -6,6 +6,7 @@ return {
},
lazy = false,
init = function()
vim.g.table_mode_map_prefix = ';t'
vim.g.table_mode_always_active = 1
vim.g.table_mode_header_fillchar = '-'
vim.g.table_mode_corner = '|'