diff --git a/modules/home-manager/vim/config/lua/plugins/editor/neogit.lua b/modules/home-manager/vim/config/lua/plugins/editor/neogit.lua index d9ce663..21d5dfb 100644 --- a/modules/home-manager/vim/config/lua/plugins/editor/neogit.lua +++ b/modules/home-manager/vim/config/lua/plugins/editor/neogit.lua @@ -1,6 +1,6 @@ return { "NeogitOrg/neogit", - branch = "nightly", + branch = "master", dependencies = { "nvim-lua/plenary.nvim", -- required "sindrets/diffview.nvim", -- optional - Diff integration diff --git a/modules/home-manager/vim/config/lua/plugins/editor/presence.lua b/modules/home-manager/vim/config/lua/plugins/editor/presence.lua index 922d72b..9631ced 100644 --- a/modules/home-manager/vim/config/lua/plugins/editor/presence.lua +++ b/modules/home-manager/vim/config/lua/plugins/editor/presence.lua @@ -1,9 +1,8 @@ return { "andweeb/presence.nvim", lazy = false, - config = function() - require("presence").setup({ - auto_update = true, - }) - end, + opts = { + auto_update = true, + log_level = "debug", + }, }