Create and push an initial working version of this repo before I change things on this machine Signed-off-by: Robert Morrison <robert@closedless.xyz>
7 lines
184 B
Lua
7 lines
184 B
Lua
local icons = require('core.utils.icons')
|
|
|
|
for name, icon in pairs(icons) do
|
|
name = 'DiagnosticSign' .. name
|
|
vim.fn.sign_define(name, { text = icon, texthl = name, numhl = '' })
|
|
end
|