Merge pull request 'revert 63c054848fdfeeb898b2a3702026e5a5a1ce4779' (#34) from softinio-patch-1 into main

Reviewed-on: #34
This commit is contained in:
Salar Rahmanian 2024-11-15 23:40:21 -08:00
commit 403c4adf13
2 changed files with 0 additions and 34 deletions

View file

@ -1,32 +0,0 @@
return {
"Cretezy/neo-tree-jj.nvim",
dependencies = {
{
"nvim-neo-tree/neo-tree.nvim",
opts = function(_, opts)
-- Register the source
table.insert(opts.sources, "jj")
-- Optional: Replace git tab in neo-tree when in jj repo
if require("neo-tree.sources.jj.utils").get_repository_root() then
-- Remove git tab
for i, source in ipairs(opts.source_selector.sources) do
if source.source == "git_status" then
table.remove(opts.source_selector.sources, i)
break
end
end
-- Add jj tab
table.insert(opts.source_selector.sources, {
display_name = "󰊢 JJ",
source = "jj",
})
end
end,
},
},
keys = {
{ "<leader>mj", "<cmd>Neotree jj<cr>", desc = "NeoTree JJ" },
},
}

View file

@ -6,7 +6,6 @@ return {
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
"debugloop/telescope-undo.nvim",
"nvim-telescope/telescope-ui-select.nvim",
"zschreur/telescope-jj.nvim",
},
config = function()
require("telescope").setup({
@ -22,7 +21,6 @@ return {
-- Enable telescope fzf native, if installed
pcall(require("telescope").load_extension, "fzf")
pcall(require("telescope").load_extension, "jj")
pcall(require("telescope").load_extension, "scaladex")
pcall(require("telescope").load_extension, "ui-select")
pcall(require("telescope").load_extension, "undo")