aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/presence.lua
blob: 224ce0e49e5045fa46c1b868ab2620538a63d9ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

M.setup = function()
	local status_ok, presence = pcall(require, "presence")
	if not status_ok then
		vim.notify("Failed to load module 'presence'", "error")
		return
	end

	presence:setup()
end

return M