mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
24 lines
517 B
Lua
24 lines
517 B
Lua
local M = {}
|
|
|
|
function M.setup()
|
|
vim.fn.sign_define("DapBreakpoint", {
|
|
text = "",
|
|
texthl = "LspDiagnosticsSignError",
|
|
linehl = "",
|
|
numhl = "",
|
|
})
|
|
vim.fn.sign_define("DapBreakpointRejected", {
|
|
text = "",
|
|
texthl = "LspDiagnosticsSignHint",
|
|
linehl = "",
|
|
numhl = "",
|
|
})
|
|
vim.fn.sign_define("DapStopped", {
|
|
text = "",
|
|
texthl = "LspDiagnosticsSignInformation",
|
|
linehl = "DiagnosticUnderlineInfo",
|
|
numhl = "LspDiagnosticsSignInformation",
|
|
})
|
|
end
|
|
|
|
return M
|