39 lines
664 B
Lua
39 lines
664 B
Lua
--
|
|
-- Icons
|
|
--
|
|
-- ..............................................
|
|
--
|
|
-- Author: Sven Vogel
|
|
-- Created: 08.11.2024
|
|
-- Edited: 08.11.2024
|
|
--
|
|
-- ==============================================
|
|
|
|
return {
|
|
diagnostics = {
|
|
error = "",
|
|
warn = "",
|
|
hint = "",
|
|
info = ""
|
|
},
|
|
comments = {
|
|
fix = '',
|
|
todo = '',
|
|
hack = '',
|
|
warn = '',
|
|
perf = '',
|
|
note = '',
|
|
test = '⏲'
|
|
},
|
|
folds = {
|
|
open = '',
|
|
closed = ''
|
|
},
|
|
folder = {
|
|
closed = '',
|
|
open = '',
|
|
empty = ''
|
|
},
|
|
file = ''
|
|
}
|