Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions lua/modules/search/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
Expand All @@ -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")
Expand Down
8 changes: 0 additions & 8 deletions lua/modules/search/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions lua/modules/user/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,7 @@ user({
dependencies = "neovim/nvim-lspconfig",
event = "VeryLazy",
opts = {
aggressive_mode = true,

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (code_clarification): Introduction of aggressive_mode option.

Consider documenting the impact of enabling aggressive_mode to ensure users are aware of its behavior.

-- your options here
},
})
Expand Down