.dotfiles/global/.config/nvim/lua/utils/icons.lua
foozzi 2c1ccaffd1 Refactoring
- Added macos
2024-01-14 23:29:33 -05:00

18 lines
323 B
Lua

local M = {}
M.debugging_signs = {
Stopped = { "󰁕 ", "DiagnosticWarn", "DapStoppedLine" },
Breakpoint = "",
BreakpointCondition = "",
BreakpointRejected = { "", "DiagnosticError" },
LogPoint = ".>",
}
M.diagnostic_signs = {
Error = "",
Warn = "",
Hint = "",
Info = "",
}
return M