Skip to content

Commit

Permalink
fix(neogit): explicitly disable signs since foldcolumn is used by def…
Browse files Browse the repository at this point in the history
…ault
  • Loading branch information
mehalter committed Jun 30, 2024
1 parent 68b8e32 commit 899d0bd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lua/astrocommunity/git/neogit/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,16 @@ return {
opts = function(_, opts)
local utils = require "astrocore"
local disable_builtin_notifications = utils.is_available "nvim-notify" or utils.is_available "noice.nvim"
local fold_signs = { "", "" }

return utils.extend_tbl(opts, {
disable_builtin_notifications = disable_builtin_notifications,
disable_signs = true,
telescope_sorter = function()
if utils.is_available "telescope-fzf-native.nvim" then
return require("telescope").extensions.fzf.native_fzf_sorter()
end
end,
integrations = { telescope = utils.is_available "telescope.nvim" },
signs = { section = fold_signs, item = fold_signs },
})
end,
},
Expand Down

0 comments on commit 899d0bd

Please sign in to comment.