summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/nvim-dap-virtual-text.lua
blob: ba1a7d4e654aced935e312dbcbd5f72e3a7cd241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

M.setup = function()
	local status_ok, nvim_dap_virtual_text = pcall(require, "nvim-dap-virtual-text")
	if not status_ok then
		vim.notify("Failed to load module 'dap-virtual-text'", vim.log.levels.ERROR)
		return
	end

	nvim_dap_virtual_text.setup({})
end

return M