diff --git a/lua/modules/search/config.lua b/lua/modules/search/config.lua index eca82cb6..6c6ff061 100644 --- a/lua/modules/search/config.lua +++ b/lua/modules/search/config.lua @@ -8,7 +8,6 @@ function config.telescope() "telescope-frecency.nvim", "telescope-file-browser.nvim", "telescope-conda.nvim", - "telescope-bookmarks.nvim", "telescope-sg", "telescope-egrepify.nvim", } @@ -18,18 +17,8 @@ function config.telescope() require("telescope").setup({ extensions = { conda = { anaconda_path = "/home/viv/.conda/" }, - bookmarks = { - selected_browser = "firefox", - url_open_command = "open", - profile_name = "default-nightly-1", - url_open_plugin = nil, - full_path = true, - buku_include_tags = false, - debug = false, - }, }, }) - require("telescope").load_extension("bookmarks") require("telescope").load_extension("fzf") require("telescope").load_extension("file_browser") require("telescope").load_extension("egrepify") diff --git a/lua/modules/search/plugins.lua b/lua/modules/search/plugins.lua index 0fdc3e52..45dcffd5 100644 --- a/lua/modules/search/plugins.lua +++ b/lua/modules/search/plugins.lua @@ -92,14 +92,6 @@ search({ dependencies = { "kkharji/sqlite.lua" }, }) -search({ - "dhruvmanila/telescope-bookmarks.nvim", - lazy = true, - dependencies = { - "kkharji/sqlite.lua", - }, -}) - -- :Z {query}: cd to the highest ranked directory matching your query. If {query} is omitted, cd to the home directory -- :Lz {query}: same as :Z, but local to the current window -- :Tz {query}: same as :Z, but local to the current tab diff --git a/lua/modules/user/plugins.lua b/lua/modules/user/plugins.lua index 26856b3c..fc97a56a 100644 --- a/lua/modules/user/plugins.lua +++ b/lua/modules/user/plugins.lua @@ -715,6 +715,7 @@ user({ dependencies = "neovim/nvim-lspconfig", event = "VeryLazy", opts = { + aggressive_mode = true, -- your options here }, })